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/Relation.h
2015-09-15 16:30:25 -05:00

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);
};