Flow123d  jenkins-Flow123d-windows32-release-multijob-51
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 
TVertex(const TPoint &)
Definition: vertex.cpp:10
static int numberInstance
Definition: vertex.h:8
~TVertex()
Definition: vertex.cpp:16
int id
Definition: vertex.h:9
TPoint GetPoint() const
Definition: vertex.cpp:20
TPoint * X
Definition: vertex.h:11
Definition: point.h:10
static int getNumInstances()
Definition: vertex.h:21
int generateId()
Definition: vertex.cpp:6
Definition: vertex.h:6