logplus/logPlus/CurveLine.h

30 lines
486 B
C
Raw Permalink Normal View History

#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