add several gate classes
This commit is contained in:
@@ -0,0 +1,8 @@
|
|||||||
|
#ifndef AND
|
||||||
|
#define AND
|
||||||
|
|
||||||
|
class and : public gate {
|
||||||
|
//TODO
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // !AND
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#ifndef NOT
|
||||||
|
#define NOT
|
||||||
|
|
||||||
|
class not : public gate {
|
||||||
|
//TODO
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // !NOT
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#ifndef OR
|
||||||
|
#define OR
|
||||||
|
|
||||||
|
class or : public gate {
|
||||||
|
//TODO
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // !OR
|
||||||
Reference in New Issue
Block a user