Add the basic class defineition for Wire and Gate.

This commit is contained in:
daniel
2017-04-04 13:37:46 -04:00
parent 2e9e431179
commit 3a88044f67
7 changed files with 544 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef GATE
#define GATE
class gate {
};
#endif // !GATE
+8
View File
@@ -0,0 +1,8 @@
#ifndef WIRE
#define WIRE
class wire {
};
#endif // !WIRE