aboutsummaryrefslogtreecommitdiff
path: root/Circuit.h
diff options
context:
space:
mode:
Diffstat (limited to 'Circuit.h')
-rw-r--r--Circuit.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Circuit.h b/Circuit.h
index e4b48e1..05e4626 100644
--- a/Circuit.h
+++ b/Circuit.h
@@ -18,10 +18,15 @@ public:
virtual ~Circuit();
public:
+ //! Auto-magically creates either a new node or net
virtual void create(string label, vector<string> nodes);
+ //! Create new node (internal function)
virtual void new_node(string label, string type);
+ //! Create new net (internal function)
virtual void new_net(string src, vector<string> dests);
+ //! Simulate the circuit
virtual void sim();
+ //! Get simulation results (probe measure values)
virtual string result();
private: