diff options
Diffstat (limited to 'Circuit.h')
-rw-r--r-- | Circuit.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Circuit.h b/Circuit.h new file mode 100644 index 0000000..249301d --- /dev/null +++ b/Circuit.h @@ -0,0 +1,19 @@ +#pragma once + +#include <string> +#include <vector> + +using std::string; +using std::vector; + +class Circuit { +public: + Circuit() = default; + virtual ~Circuit() = default; + +public: + void create(string label, vector<string> nodes); + void new_node(string label, string type); + void new_net(string label, string node); +}; + |