hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IAtan.h
2019-05-01 19:16:28 +08:00

28 lines
434 B
C++

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