summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/code/CMischer.cpp
blob: a5eafe9d299af747041a1f44417c9c450dfacb46 (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
/**********************************************************************************/
/*                                 Definitionsmodul                               */
/**********************************************************************************/
/* 
 * generiert mit Innovator Version 8.1.04
 *
 * erstellt am: 12.01.2006  14:59:41
 * Repository : swtc20
 * Modell     : swt
 * Benutzer   : swtc20 
 * File       : /users/swtc20/code/CMischer.cpp
 *
 */


// ino.module.CMischer.1091.includes 
#include "CMischer.hpp"
// ino.end
using std::cout;
using std::endl;

// ino.method.startGeraet.1134.definition 
int systemModel::AnalyseModell::CMischer::startCGeraet(int i)
// ino.end
// ino.method.startGeraet.1134.body 
{
	cout << "Ger�t " << getname() << " startet mit Wert "<< i << endl;	
	setWert(i);
	stopCGeraet();
	return 0;
}
// ino.end

// ino.method.stopGeraet.1137.definition 
int systemModel::AnalyseModell::CMischer::stopCGeraet()
// ino.end
// ino.method.stopGeraet.1137.body 
{
	cout << "Ger�t " << getname() << " stoppt" <<endl;
	return 0;
}
// ino.end
systemModel::AnalyseModell::CMischer::CMischer()
{
}
systemModel::AnalyseModell::CMischer::CMischer(string s):CGeraet(s)
{
	
}