mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
23 lines
330 B
C++
23 lines
330 B
C++
/*
|
|
* Copyright (c) 2023 hikyuu.org
|
|
*
|
|
* Created on: 2023-12-24
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
class IMrr : public IndicatorImp {
|
|
INDICATOR_IMP(IMrr)
|
|
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
|
|
|
public:
|
|
IMrr();
|
|
virtual ~IMrr();
|
|
};
|
|
|
|
} // namespace hku
|