updating
This commit is contained in:
parent
7c252e3746
commit
b98c396637
3 changed files with 6 additions and 2 deletions
BIN
a.out
Executable file
BIN
a.out
Executable file
Binary file not shown.
|
@ -5,7 +5,8 @@ db_engine::db_engine(){
|
|||
}
|
||||
|
||||
//create a new table in memory
|
||||
db_engine::createCmd(){
|
||||
//creates a vector
|
||||
void db_engine::createCmd(){
|
||||
////
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
class db_engine {
|
||||
//member variables
|
||||
std::vector<std::string> cmdList;
|
||||
|
||||
public:
|
||||
db_engine();
|
||||
|
|
Reference in a new issue