hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/ILowLine.h

30 lines
479 B
C++
Raw Normal View History

2019-04-13 19:25:15 +08:00
/*
* ILowLine.h
2019-11-10 23:31:41 +08:00
*
2019-04-13 19:25:15 +08:00
* Copyright (c) 2019 hikyuu.org
*
* Created on: 201642
* Author: fasiondog
*/
#pragma once
2019-04-13 19:25:15 +08:00
#ifndef INDICATOR_IMP_ILOWLINE_H_
#define INDICATOR_IMP_ILOWLINE_H_
#include "../Indicator.h"
namespace hku {
2019-11-10 23:31:41 +08:00
class ILowLine : public IndicatorImp {
2019-04-13 19:25:15 +08:00
INDICATOR_IMP(ILowLine)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
ILowLine();
virtual ~ILowLine();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_ILOWLINE_H_ */