You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
296 B
C
15 lines
296 B
C
2 months ago
|
#ifndef BASICGEOMETRYOPERATOR_H
|
||
|
#define BASICGEOMETRYOPERATOR_H
|
||
|
|
||
|
|
||
|
class BasicGeometryOperator
|
||
|
{
|
||
|
public:
|
||
|
virtual void paint()=0;
|
||
|
virtual void saveData()=0;
|
||
|
virtual void pick()=0;// 点、线、单元,区域 四种拾取
|
||
|
virtual void move()=0;
|
||
|
};
|
||
|
|
||
|
#endif // BASICGEOMETRYOPERATOR_H
|