hikyuu2/hikyuu_pywrap/global/agent_main.cpp
2024-08-13 18:53:08 +08:00

19 lines
325 B
C++

/*
* Copyright(C) 2021 hikyuu.org
*
* Create on: 2021-01-30
* Author: fasiondog
*/
#include <pybind11/pybind11.h>
namespace py = pybind11;
void export_SpotRecord(py::module& m);
void export_SpotAgent(py::module& m);
void export_global_main(py::module& m) {
export_SpotRecord(m);
export_SpotAgent(m);
}