#ifndef PROCESSOR_H #define PROCESSOR_H #include using namespace std; #include "Conjunto.h" class Processor { public: Processor(string s, Conjunto c[], char d[][100]); int eval(); Conjunto retorno(); private: Processor(){}; Conjunto E(); Conjunto T(); Conjunto Ep(Conjunto t); Conjunto Tp(Conjunto f); Conjunto F(); string str; int pos; Conjunto conjuntos[100]; char datos[100][100]; }; #endif