diff options
Diffstat (limited to 'Circuit.h')
-rw-r--r-- | Circuit.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,8 @@ #include "Node.h" #include "Net.h" +#include "LoopDetection.h" + using std::string; using std::vector; @@ -26,6 +28,8 @@ private: std::map<string, Node *> nodes = {}; vector<Net *> nets = {}; + LoopDetection * ld = new LoopDetection(); + virtual Node * find_node(string label); }; |