dispmap/svfigure.h

18 lines
182 B
C
Raw Normal View History

2014-07-22 20:37:29 +04:00
#ifndef SVFIGURE_H
#define SVFIGURE_H
#include "svpoint.h"
#include "svcurve.h"
class SvFigure
{
protected:
SvPoint ends[2];
public:
SvFigure();
};
#endif // SVFIGURE_H