mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-03 20:37:50 +08:00
32 lines
520 B
C++
32 lines
520 B
C++
/*
|
||
* IRoundUp.h
|
||
*
|
||
* Copyright (c) 2019 hikyuu.org
|
||
*
|
||
* Created on: 2019-4-14
|
||
* Author: fasiondog
|
||
*/
|
||
|
||
#pragma once
|
||
#ifndef INDICATOR_IMP_IROUNDUP_H_
|
||
#define INDICATOR_IMP_IROUNDUP_H_
|
||
|
||
#include "../Indicator.h"
|
||
|
||
namespace hku {
|
||
|
||
/**
|
||
* 向上截取,如10.1截取后为11
|
||
*/
|
||
class IRoundUp : public IndicatorImp {
|
||
INDICATOR_IMP(IRoundUp)
|
||
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
||
|
||
public:
|
||
IRoundUp();
|
||
virtual ~IRoundUp();
|
||
};
|
||
|
||
} /* namespace hku */
|
||
#endif /* INDICATOR_IMP_IROUNDUP_H_ */
|