| 25 | enum { UDG = 1, DG = 2 }; |
| 26 | |
| 27 | AbstractGraph(int _type = DG) : type(_type){} |
| 28 | virtual ~AbstractGraph() = 0; |
| 29 | /* Insert */ |
| 30 | virtual void AddVex(MyGraphicsVexItem *gvex) = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected