diff --git a/Condition.cpp b/Condition.cpp new file mode 100755 index 0000000..d8ef7e1 --- /dev/null +++ b/Condition.cpp @@ -0,0 +1,29 @@ +#include +#include "Attribute.h" + +using namespace std; + +//currently only implementing for comparison +void equality(Attribute a, string s){ + +} + +void equality(Attribute a, int i){ + +} + +void gt(Attribute a, int i){ + +} + +void lt(Attribute a, int i){ + +} + +void gte(Attribute a, int i){ + +} + +void lte(Attribute a, int i){ + +} \ No newline at end of file diff --git a/EngineMkFile.mak b/EngineMkFile.mak deleted file mode 100755 index 64006b8..0000000 --- a/EngineMkFile.mak +++ /dev/null @@ -1,5 +0,0 @@ -all: - g++ test.cpp Attribute.cpp Relation.cpp Condition.cpp DBEngine.cpp -o test - -clean: - rm *o test \ No newline at end of file diff --git a/test b/test new file mode 100755 index 0000000..bb0df00 Binary files /dev/null and b/test differ