mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
28 lines
491 B
C++
28 lines
491 B
C++
/*
|
|
* ILowLineBars.h
|
|
*
|
|
* Copyright (c) 2019 hikyuu.org
|
|
*
|
|
* Created on: 2019-4-14
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef INDICATOR_IMP_ILOWLINEBARS_H_
|
|
#define INDICATOR_IMP_ILOWLINEBARS_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class ILowLineBars: public IndicatorImp {
|
|
INDICATOR_IMP(ILowLineBars)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
ILowLineBars();
|
|
virtual ~ILowLineBars();
|
|
};
|
|
|
|
} /* namespace hku */
|
|
#endif /* INDICATOR_IMP_ILOWLINEBARS_H_ */
|