#include <iostream>
#include <vector>
using namespace std;
class Attribute{
vector<string> 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<string> getValues();
string getName();
string getType();
bool isKey();
int getSize();
void setName(string s);
void display();
};