#pragma once #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); Attribute(string n, string t, bool k, int s); void addCell(string v); void removeCell(int index); string operator[](int i); vector getValues(); string getName(); void setName(string s); string getType(); bool isKey(); int getSize(); void display(); void clearAllValues(); };