VisionFlowPro/ShapeDrawer/ShapeItemLine.h

16 lines
224 B
C
Raw Normal View History

2023-02-28 14:50:28 +08:00
#include "ShapeItemBase.h"
class ShapeItemLine
:public ShapeItemBase
{
public:
ShapeItemLine(QPointF pos = QPointF(0, 0));
~ShapeItemLine();
private:
void calculateShape() override;
void shapeInit() override;
};