30 lines
486 B
C++
30 lines
486 B
C++
#ifndef CCURVELINE
|
|
#define CCURVELINE
|
|
class CurveLine
|
|
{
|
|
|
|
public:
|
|
CurveLine();
|
|
/**
|
|
* @brief 设置业务深度
|
|
*/
|
|
void SetLeftDepth(float depth);
|
|
/**
|
|
* @brief 获取业务深度
|
|
*/
|
|
float GetLeftDepth() const;
|
|
/**
|
|
* @brief 设置业务深度
|
|
*/
|
|
void SetRightDepth(float depth);
|
|
/**
|
|
* @brief 获取业务深度
|
|
*/
|
|
float GetRightDepth() const;
|
|
private:
|
|
float m_LeftDepth;
|
|
float m_RightDepth;
|
|
public:;
|
|
};
|
|
#endif
|