mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
29 lines
466 B
C++
29 lines
466 B
C++
/*
|
|
* ILowLine.h
|
|
*
|
|
* Copyright (c) 2019 hikyuu.org
|
|
*
|
|
* Created on: 2016年4月2日
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef INDICATOR_IMP_ILOWLINE_H_
|
|
#define INDICATOR_IMP_ILOWLINE_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class ILowLine: public IndicatorImp {
|
|
INDICATOR_IMP(ILowLine)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
ILowLine();
|
|
virtual ~ILowLine();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
|
|
#endif /* INDICATOR_IMP_ILOWLINE_H_ */
|