hikyuu2/hikyuu_pywrap/global/agent_main.cpp

17 lines
260 B
C++
Raw Normal View History

2021-01-30 00:52:56 +08:00
/*
* Copyright(C) 2021 hikyuu.org
*
* Create on: 2021-01-30
* Author: fasiondog
*/
2023-12-27 02:16:10 +08:00
#include <pybind11/pybind11.h>
2021-01-30 00:52:56 +08:00
2023-12-27 02:16:10 +08:00
namespace py = pybind11;
2021-01-30 00:52:56 +08:00
2023-12-27 02:16:10 +08:00
void export_SpotAgent(py::module& m);
2021-01-30 00:52:56 +08:00
2023-12-27 02:16:10 +08:00
void export_global_main(py::module& m) {
export_SpotAgent(m);
2021-01-30 00:52:56 +08:00
}