school/cs236/rdbms/Tuple.h

11 lines
126 B
C
Raw Normal View History

2016-04-06 20:46:32 -07:00
#ifndef __TUPLE_H__
#define __TUPLE_H__
#include <vector>
#include <string>
class Tuple: public vector<string> {
};
#endif