GEGELATI
tpgActionInstrumented.h
1
2#ifndef TPG_ACTION_INSTRUMENTED_H
3#define TPG_ACTION_INSTRUMENTED_H
4
5#include "tpg/instrumented/tpgVertexInstrumentation.h"
6#include "tpg/tpgAction.h"
7
8namespace TPG {
9
15 {
16 public:
19 TPGActionInstrumented(const uint64_t id) : TPGAction(id)
20 {
21 }
22 };
23} // namespace TPG
24
25#endif
Instrumented TPGAction.
Definition: tpgActionInstrumented.h:15
TPGActionInstrumented(const uint64_t id)
Definition: tpgActionInstrumented.h:19
Class representing an Action of a TPGGraph.
Definition: tpgAction.h:52
Instrumentation code for TPGVertex class for instrumented execution.
Definition: tpgVertexInstrumentation.h:13
Definition: tpgActionInstrumented.h:8