mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-03 04:17:58 +08:00
18 lines
340 B
C++
18 lines
340 B
C++
/*
|
|
* Copyright(C) 2021 hikyuu.org
|
|
*
|
|
* Create on: 2021-02-16
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
namespace py = pybind11;
|
|
|
|
void export_Strategy(py::module& m);
|
|
void export_AccountTradeManger(py::module& m);
|
|
|
|
void export_strategy_main(py::module& m) {
|
|
export_Strategy(m);
|
|
export_AccountTradeManger(m);
|
|
} |