This commit is contained in:
Becca 2015-09-14 16:25:22 -05:00
parent 7c252e3746
commit b98c396637
3 changed files with 6 additions and 2 deletions

BIN
a.out Executable file

Binary file not shown.

View file

@ -5,7 +5,8 @@ db_engine::db_engine(){
}
//create a new table in memory
db_engine::createCmd(){
//creates a vector
void db_engine::createCmd(){
////
}

View file

@ -1,5 +1,8 @@
#include <iostream>
#include <vector>
class db_engine {
//member variables
std::vector<std::string> cmdList;
public:
db_engine();