hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/ISign.h
2019-04-03 01:49:43 +08:00

28 lines
433 B
C++

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