school/cs236/rdbms/Tuple.h
2016-04-06 20:46:32 -07:00

11 lines
126 B
C++

#ifndef __TUPLE_H__
#define __TUPLE_H__
#include <vector>
#include <string>
class Tuple: public vector<string> {
};
#endif