NB6_Hazards/GDE_3_2008/Wertetabelle.h
gaeltp3 7a52e186d9 Verbindung von GDE mit unserem Projekt Hazard
im Ordner GDE_3_Hazard. Ab nun koennen wir weiter in diesem Ordner
programmieren.
2013-11-28 16:08:16 +01:00

37 lines
599 B
C++

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