hikyuu2/hikyuu_pywrap/bind_stl.h
2024-03-17 23:30:24 +08:00

34 lines
1021 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) 2019~2023, hikyuu.org
*
* History:
* 1. 20231231 added by fasiondog
*/
#pragma once
#include <pybind11/pybind11.h>
#include <hikyuu/hikyuu.h>
using namespace hku;
// pybind stl 绑定必须在其他 type_caster 之前
// 让自定义的 vector 在 python 中表现的像 list 一样
// 简单类型的 vector 不再导出,只导出复杂的 structList避免影响性能
// PYBIND11_MAKE_OPAQUE(StringList);
// PYBIND11_MAKE_OPAQUE(PriceList);
PYBIND11_MAKE_OPAQUE(DatetimeList);
PYBIND11_MAKE_OPAQUE(KRecordList);
PYBIND11_MAKE_OPAQUE(StockList);
PYBIND11_MAKE_OPAQUE(StockWeightList);
// PYBIND11_MAKE_OPAQUE(IndicatorList); // 无法编译
PYBIND11_MAKE_OPAQUE(TimeLineList);
PYBIND11_MAKE_OPAQUE(TransList);
PYBIND11_MAKE_OPAQUE(BorrowRecordList);
PYBIND11_MAKE_OPAQUE(LoanRecordList);
PYBIND11_MAKE_OPAQUE(PositionRecordList);
PYBIND11_MAKE_OPAQUE(TradeRecordList);
PYBIND11_MAKE_OPAQUE(SystemWeightList);
PYBIND11_MAKE_OPAQUE(SystemList);
PYBIND11_MAKE_OPAQUE(ScoreRecordList);