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