mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 12:57:45 +08:00
23 lines
428 B
C++
23 lines
428 B
C++
/*
|
|
* data_driver_main.cpp
|
|
*
|
|
* Created on: 2017-10-7
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
using namespace boost::python;
|
|
|
|
void export_DataDriverFactory();
|
|
void export_KDataDriver();
|
|
// void export_BaseInfoDriver();
|
|
void export_BlockInfoDriver();
|
|
|
|
void export_data_driver_main() {
|
|
// export_BaseInfoDriver();
|
|
export_BlockInfoDriver();
|
|
export_KDataDriver();
|
|
export_DataDriverFactory();
|
|
}
|