mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
27 lines
398 B
C++
27 lines
398 B
C++
/*
|
|
* IMa.h
|
|
*
|
|
* Created on: 2013-2-10
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef INDICATOR__IMP_IMA_H_
|
|
#define INDICATOR__IMP_IMA_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class IMa : public IndicatorImp {
|
|
INDICATOR_IMP(IMa)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
IMa();
|
|
virtual ~IMa();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
#endif /* INDICATOR__IMP_IMA_H_ */
|