mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
26 lines
358 B
C++
26 lines
358 B
C++
/*
|
|
* ISum.h
|
|
*
|
|
* Created on: 2019-4-1
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef HKU_ISUM_H_
|
|
#define HKU_ISUM_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class ISum: public IndicatorImp {
|
|
INDICATOR_IMP(ISum)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
ISum();
|
|
virtual ~ISum();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
#endif /* HKU_ISUM_H_ */
|