Hikyuu
| 命名空间 | 宏定义 | 类型定义 | 函数
SelectorBase.h 文件参考
#include "../system/System.h"
#include "../../KData.h"
#include "../../utilities/Parameter.h"
#include <boost/serialization/shared_ptr.hpp>
#include <boost/serialization/assume_abstract.hpp>
#include <boost/serialization/base_object.hpp>
SelectorBase.h 的引用(Include)关系图:
此图展示该文件直接或间接的被哪些文件引用了:

浏览源代码.

class  hku::SelectorBase
 交易对象选择模块 更多...
 

命名空间

 hku
 Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
 

宏定义

#define SELECTOR_NO_PRIVATE_MEMBER_SERIALIZATION
 对于没有私有变量的继承子类,可直接使用该宏定义序列化 更多...
 
#define SELECTOR_IMP(classname)
 

类型定义

typedef shared_ptr< SelectorBase > hku::SelectorPtr
 客户程序都应使用该指针类型 更多...
 
typedef shared_ptr< SelectorBase > hku::SEPtr
 

函数

HKU_API std::ostream & hku::operator<< (std::ostream &os, const SelectorBase &st)
 
HKU_API std::ostream & hku::operator<< (std::ostream &os, const SelectorPtr &st)
 

宏定义说明

#define SELECTOR_IMP (   classname)
值:
public:\
virtual SelectorPtr _clone() {\
return SelectorPtr(new classname());\
}\
virtual SystemList getSelectedSystemList(Datetime date);
vector< SystemPtr > SystemList
Definition: System.h:306
shared_ptr< SelectorBase > SelectorPtr
客户程序都应使用该指针类型
Definition: SelectorBase.h:135