hikyuu2/hikyuu_pywrap/indicator/indicator_main.cpp

23 lines
465 B
C++
Raw Normal View History

2015-01-07 01:26:14 +08:00
/*
* indicator_main.cpp
*
* Created on: 2012-10-18
* Author: fasiondog
*/
2023-12-27 22:48:41 +08:00
#include <pybind11/pybind11.h>
2015-01-07 01:26:14 +08:00
2023-12-27 22:48:41 +08:00
namespace py = pybind11;
2015-01-07 01:26:14 +08:00
2023-12-27 22:48:41 +08:00
void export_Indicator(py::module& m);
void export_IndicatorImp(py::module& m);
void export_IndParam(py::module& m);
void export_Indicator_build_in(py::module& m);
2015-01-07 01:26:14 +08:00
2023-12-27 22:48:41 +08:00
void export_indicator_main(py::module& m) {
export_Indicator(m);
export_IndicatorImp(m);
export_IndParam(m);
export_Indicator_build_in(m);
2015-01-07 01:26:14 +08:00
}