hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IRound.h
2019-11-10 23:31:41 +08:00

32 lines
480 B
C++

/*
* IRound.h
*
* Copyright (c) 2019 hikyuu.org
*
* Created on: 2019-4-14
* Author: fasiondog
*/
#pragma once
#ifndef INDICATOR_IMP_IROUND_H_
#define INDICATOR_IMP_IROUND_H_
#include "../Indicator.h"
namespace hku {
/**
* 四舍五入
*/
class IRound : public IndicatorImp {
INDICATOR_IMP(IRound)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IRound();
virtual ~IRound();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_IROUND_H_ */