#include #include using namespace std; class Attribute{ vector values; string name; string type; bool key; int size; public: Attribute(); Attribute(string n, string t, bool k); void addCell(string v); string operator[](int i); vector getValues(); string getName(); void setName(string s); string getType(); bool isKey(); int getSize(); void display(); };