dispmap/svpoint.h

35 lines
433 B
C
Raw Normal View History

2014-07-22 20:37:29 +04:00
#ifndef SVPOINT_H
#define SVPOINT_H
#include "svsimplepoint.h"
#include "svcurve.h"
class SvCurve;
class SvPoint: public SvSimplePoint
{
public:
enum Sides {
TOP,
BOTTOM,
RIGHT,
LEFT
};
enum FlowType {
HORIZONTAL,
VERTICAL,
SLASH,
BACK_SLASH
};
protected:
SvCurve* m_curves;
FlowType m_type;
public:
SvPoint();
};
#endif // SVPOINT_H