#ifndef TABLE_H #define TABLE_H #include #include #include class Table { typedef list TableType; TableType table; string title; public: Table(const string& t); void add(const string& elem); void output(); }; #endif TABLE_H