summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/CDisplay.cpp
blob: f085c89624ee4d9fa0bc5e82d7726238e018abd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**********************************************************************************/
/*                                 Definitionsmodul                               */
/**********************************************************************************/
/* 
 * generiert mit Innovator Version 8.1.04
 *
 * erstellt am: 12.01.2006  14:36:20
 * Repository : swtc20
 * Modell     : swt
 * Benutzer   : swtc20 
 * File       : /users/swtc20/code/CDisplay.cpp
 *
 */


// ino.module.CDisplay.1092.includes 
#include "CDisplay.hpp"
// ino.end
#include <windows.h> 

#include <iostream>
using std::cout;
using std::endl;

// ino.method.starte.866.definition 
int systemModel::AnalyseModell::CDisplay::starte()
// ino.end
// ino.method.starte.866.body 
{
	return 0;
}
// ino.end

// ino.method.zeigeGewichtAn.732.definition 
void systemModel::AnalyseModell::CDisplay::zeigeGewichtAn()
// ino.end
// ino.method.zeigeGewichtAn.732.body 
{
}
// ino.end

// ino.method.aktualisiere.497.definition 
int systemModel::AnalyseModell::CDisplay::aktualisiere()
// ino.end
// ino.method.aktualisiere.497.body 
{
	//Sleep(500);
	cout << "DISPLAY: Gesamtgewicht " <<pWaage->getGesamtGewicht() << endl;
	cout << "DISPLAY: Differenzgewicht " <<pWaage->getDifferenzGewicht() << endl;
	return 0;
}
// ino.end

systemModel::AnalyseModell::CDisplay::CDisplay() {
}

systemModel::AnalyseModell::CDisplay::CDisplay(CWaage *pw) {
	pWaage=pw;
}