mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
27 lines
392 B
C++
27 lines
392 B
C++
/*
|
|
* Atr.h
|
|
*
|
|
* Created on: 2016年5月4日
|
|
* Author: Administrator
|
|
*/
|
|
|
|
#ifndef INDICATOR_IMP_ATR_H_
|
|
#define INDICATOR_IMP_ATR_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class Atr: public IndicatorImp {
|
|
INDICATOR_IMP(Atr)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
Atr();
|
|
virtual ~Atr();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
|
|
#endif /* INDICATOR_IMP_ATR_H_ */
|