diff --git a/src/and.cpp b/src/and.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/and.h b/src/and.h new file mode 100644 index 0000000..e99a4ab --- /dev/null +++ b/src/and.h @@ -0,0 +1,8 @@ +#ifndef AND +#define AND + +class and : public gate { + //TODO +}; + +#endif // !AND diff --git a/src/not.cpp b/src/not.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/not.h b/src/not.h new file mode 100644 index 0000000..2ccc35d --- /dev/null +++ b/src/not.h @@ -0,0 +1,8 @@ +#ifndef NOT +#define NOT + +class not : public gate { + //TODO +}; + +#endif // !NOT diff --git a/src/or.cpp b/src/or.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/or.h b/src/or.h new file mode 100644 index 0000000..62d804a --- /dev/null +++ b/src/or.h @@ -0,0 +1,8 @@ +#ifndef OR +#define OR + +class or : public gate { + //TODO +}; + +#endif // !OR diff --git a/test b/test new file mode 100644 index 0000000..e69de29