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