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