message
This commit is contained in:
parent
ae0b5e5a2a
commit
3a53ef1533
3 changed files with 33 additions and 11 deletions
|
@ -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
28
db_engine.h
Executable 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
5
test.cpp
Executable file
|
@ -0,0 +1,5 @@
|
|||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello World!";
|
||||
}
|
Reference in a new issue