#include "stdafx.h" #include #include #include #include "Cell.h" #include "PrimImplikant.h" #include "Cell.h" using namespace std; #ifndef WERTETABELLE #define WERTETABELLE class Wertetabelle { public: void Print(); Wertetabelle(vector* cells, vector* variables) { this->cells = cells; this->variables = variables; } private: string makeHeader(); void printHeader(); void printI(unsigned int i); void printPrimImplikanten(unsigned int i); vector* cells; vector* variables; vector padding; uint width; }; #endif