school/cs236/rdbms/Tuple.h

11 lines
126 B
C++

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