16 lines
No EOL
321 B
C++
Executable file
16 lines
No EOL
321 B
C++
Executable file
#include <iostream>
|
|
#include <vector>
|
|
#include "Attribute.h"
|
|
|
|
using namespace std;
|
|
|
|
//NOT DONE
|
|
class Relation {
|
|
//a table with rows and columns
|
|
string name;
|
|
vector< Attribute<T> > att;
|
|
public:
|
|
Relation();
|
|
Relation(vector< Attribute<T> > a) { att = a; }
|
|
void addTuple(vector< Attribute<T> > tuple);
|
|
}; |