This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/Attribute.h
2015-09-17 18:34:03 -05:00

24 lines
No EOL
396 B
C++
Executable file

#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();
};