aboutsummaryrefslogtreecommitdiff
path: root/Circuit.h
diff options
context:
space:
mode:
Diffstat (limited to 'Circuit.h')
-rw-r--r--Circuit.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Circuit.h b/Circuit.h
index f261cd8..e4b48e1 100644
--- a/Circuit.h
+++ b/Circuit.h
@@ -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);
};