21 #ifndef DATA_STRUCTURESVERTEX_H
22 #define DATA_STRUCTURESVERTEX_H
24 #include "../basic_types/globals.h"
~Vertex()
Destroys this Vertex.
Definition: Vertex.cpp:30
IDType getID() const
Returns the ID of this Vertex.
Definition: Vertex.cpp:32
IDType id
Stores the ID of this Vertex.
Definition: Vertex.h:68
Vertex stores all data of a vertex in a Hypergraph.
Definition: Vertex.h:35
friend std::ostream & operator<<(std::ostream &ost, Vertex const &data)
Streams a short string representation of the given Vertex.
Definition: Vertex.cpp:37
Vertex(IDType id)
Creates a new Vertex with the given ID.
Definition: Vertex.cpp:28
unsigned int IDType
IDType is an (unsigned) integer specifically used as an Identifier of graphs, elements of graphs or a...
Definition: globals.h:53