hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/ISma.h
2019-11-10 23:31:41 +08:00

29 lines
440 B
C++

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