hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/ILn.h
2019-04-11 02:10:41 +08:00

28 lines
418 B
C++

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