hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IPriceList.h
2019-03-16 14:43:50 +08:00

29 lines
523 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.

/*
* IPriceList.h
*
* Created on: 2013-2-12
* Author: fasiondog
*/
#ifndef IPRICELIST_H_
#define IPRICELIST_H_
#include "../Indicator.h"
namespace hku {
//找到数组最后一个Null<price_t>并将之前的数据全部置为Null
class IPriceList: public IndicatorImp {
INDICATOR_IMP(IPriceList)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IPriceList();
IPriceList(const PriceList&, int discard);
virtual ~IPriceList();
};
} /* namespace hku */
#endif /* IPRICELIST_H_ */