mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-02 20:08:26 +08:00
19 lines
325 B
C++
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);
|
|
}
|