hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IBarsCount.h
2019-05-12 22:54:51 +08:00

28 lines
475 B
C++

/*
* IBarsCount.h
*
* Copyright (c) 2019 hikyuu.org
*
* Created on: 2019-5-12
* Author: fasiondog
*/
#ifndef INDICATOR_IMP_IBARSCOUNT_H_
#define INDICATOR_IMP_IBARSCOUNT_H_
#include "../Indicator.h"
namespace hku {
class IBarsCount: public IndicatorImp {
INDICATOR_IMP(IBarsCount)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IBarsCount();
virtual ~IBarsCount();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_IBARSCOUNT_H_ */