mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-03 20:37:50 +08:00
22 lines
397 B
C++
22 lines
397 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();
|
|
|
|
BOOST_PYTHON_MODULE(_indicator) {
|
|
docstring_options doc_options(false);
|
|
export_Indicator();
|
|
export_IndicatorImp();
|
|
export_Indicator_build_in();
|
|
}
|