add several gate classes

This commit is contained in:
Joel Beckmeyer 2017-04-06 09:24:36 -04:00
parent 3a88044f67
commit 7de36407f2
7 changed files with 24 additions and 0 deletions

0
src/and.cpp Normal file
View File

8
src/and.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef AND
#define AND
class and : public gate {
//TODO
};
#endif // !AND

0
src/not.cpp Normal file
View File

8
src/not.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef NOT
#define NOT
class not : public gate {
//TODO
};
#endif // !NOT

0
src/or.cpp Normal file
View File

8
src/or.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef OR
#define OR
class or : public gate {
//TODO
};
#endif // !OR

0
test Normal file
View File