mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
28 lines
425 B
C++
28 lines
425 B
C++
/*
|
|
* IExp.h
|
|
*
|
|
* Copyright (c) 2019 fasiondog
|
|
*
|
|
* Created on: 2019-4-3
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef INDICATOR_IMP_IEXP_H_
|
|
#define INDICATOR_IMP_IEXP_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class IExp: public IndicatorImp {
|
|
INDICATOR_IMP(IExp)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
IExp();
|
|
virtual ~IExp();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
#endif /* INDICATOR_IMP_IEXP_H_ */
|