school/cs236/rdbms/relation.h

16 lines
214 B
C
Raw Normal View History

2016-04-06 20:46:32 -07:00
#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