dispmap/svcurve.h
Andrey Tkachenko 5ab294bfa8 QtV2
2014-07-22 20:37:29 +04:00

20 lines
226 B
C++

#ifndef SVCURVE_H
#define SVCURVE_H
#include "svpoint.h"
class SvPoint;
class SvCurve
{
protected:
SvPoint *m_ends;
SvPoint *m_points;
SvSimplePoint *m_keyPoints;
public:
SvCurve();
};
#endif // SVCURVE_H