#include <iostream>
#include <vector>
using namespace std;
//Funtional, might need more functionality
//template<typename T>
class Attribute {
vector<string> values;
string name;
string type;
bool key;
int size;
public:
Attribute(string n, string t, bool k){
name = n;
type = t;
key = k;
size = 0;
}
void addRow(string v) {
values.push_back(v);
vector<string> getValues() { return values; }
string getName(){ return name; }
string getType(){ return type; }
bool isKey(){ return key; }
int getSize(){ return size; }
void display()
{
cout<<"Attribute name:\t"<< name <<"\n";
cout<<"Elements: ";
for (int i = 0; i < values.size(); ++i)
cout<<values[i]<<" ";
void Attribute(string n, vector<string> a){
values = a;
void erase(int position)
values.erase(values.begin()+ position);
};