#ifndef CONJUNTO_H #define CONJUNTO_H #include #include using namespace std; class Conjunto { public: Conjunto(); Conjunto(int elemento); void Display(); void agrega(int elemento); bool pertenece(int e); void aenr(int e); Conjunto operator +(const Conjunto & conj); Conjunto operator *( Conjunto & conj); int Conjunto::Compara(Conjunto &Ingresado); private: vector CON; }; #endif