GEGELATI
Loading...
Searching...
No Matches
tpgTeam.h
1
37#ifndef TPG_TEAM_H
38#define TPG_TEAM_H
39
40#include "tpg/tpgVertex.h"
41
42namespace TPG {
48 class TPGTeam : public TPGVertex
49 {
50 public:
55
61 virtual void addOutgoingEdge(TPGEdge* edge) override;
62 };
63
64}; // namespace TPG
65
66#endif
Class representing edges of the Tangled Program Graphs.
Definition tpgEdge.h:54
Definition tpgTeam.h:49
virtual void addOutgoingEdge(TPGEdge *edge) override
Specialization throwing an std::runtime_exception if a TPGActionEdge is added to a TPGTeam.
Definition tpgTeam.cpp:42
TPGTeam()
Main constructor of a TPGTeam.
Definition tpgTeam.h:54
Abstract class representing the vertices of a TPGGraph.
Definition tpgVertex.h:55
Definition executionStats.h:44