This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/DBEngine.h

22 lines
306 B
C
Raw Normal View History

2015-09-15 16:30:25 -05:00
#include <fstream>
#include <iostream>
#include <vector>
#include "Relation.h"
using namespace std;
2015-09-15 20:23:27 -05:00
2015-09-15 21:13:15 -05:00
class DBEngine {
vector<Relation> tables;
2015-09-15 16:30:25 -05:00
public:
DBEngine();
2015-09-15 21:13:15 -05:00
void addRelation(Relation r) {
tables.push_back(r);
}
vector<Relation> getRelations() {
return tables;
}
2015-09-15 16:30:25 -05:00
};