This commit is contained in:
Becca 2015-09-14 15:04:54 -05:00
parent ae0b5e5a2a
commit 3a53ef1533
3 changed files with 33 additions and 11 deletions

View file

@ -1,11 +0,0 @@
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream csv;
csv.open ("testing.csv");
csv << "Writing, this, to, a, file";
csv.close();
return 0;
}

28
db_engine.h Executable file
View file

@ -0,0 +1,28 @@
class db_engine {
//member variables
public:
db_engine();
//
create();
//
open();
//
save();
//
show();
//
insert();
//
delete();
//
select();
//
project();
//
product();
//
union_comp();
};

5
test.cpp Executable file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello World!";
}