16 lines
214 B
C++
16 lines
214 B
C++
#ifndef __RELATION_H__
|
|
#define __RELATION_H__
|
|
|
|
#include "Tuple.h"
|
|
#include "schema.h"
|
|
#include <set>
|
|
|
|
class relation {
|
|
public:
|
|
string name;
|
|
schema schemas;
|
|
set<Tuple> tuples;
|
|
};
|
|
|
|
#endif
|