hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IBarsLast.h
2019-05-04 21:53:10 +08:00

28 lines
466 B
C++

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