Flow123d
vertex.h
Go to the documentation of this file.
1 #ifndef vertexH
2 #define vertexH
3 
4 #include "point.h"
5 
6 class TVertex {
7 private:
8  static int numberInstance;
9  int id;
10 
12 
13  int generateId();
14 
15 public:
16  TVertex(const TPoint&);
17  ~TVertex();
18 
19  TPoint GetPoint() const;
20 
21  static int getNumInstances() {
23  }
24 };
25 
26 #endif
27