mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 12:57:45 +08:00
bc3a875a2c
2. Support C++17 3. Clear "tes_data/tmp"
24 lines
442 B
C++
24 lines
442 B
C++
/*
|
|
* indicator_main.cpp
|
|
*
|
|
* Created on: 2012-10-18
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
using namespace boost::python;
|
|
|
|
void export_Indicator();
|
|
void export_IndicatorImp();
|
|
void export_Indicator_build_in();
|
|
void export_Operand();
|
|
|
|
BOOST_PYTHON_MODULE(_indicator) {
|
|
docstring_options doc_options(false);
|
|
export_Indicator();
|
|
export_IndicatorImp();
|
|
export_Indicator_build_in();
|
|
export_Operand();
|
|
}
|