26 lines
422 B
C++
26 lines
422 B
C++
#include <iostream>
|
|
//#include "DBEngine.h"
|
|
#include <vector>
|
|
#include "Attribute.h"
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
|
|
/*
|
|
DBEngine engine;
|
|
Relation r;
|
|
Attribute<int> a;
|
|
*/
|
|
|
|
vector<string> shamWow;
|
|
pendejo.push_back("rag");
|
|
pendejo.push_back("sponge");
|
|
pendejo.push_back("wooow");
|
|
pendejo.push_back("cloth");
|
|
|
|
Attribute atributo;
|
|
atributo.initializeAttribute("atributo",shamWow);
|
|
|
|
atributo.display();
|
|
}
|