blob: 5b0fb501d5ba3507f1df8441693d93b92f074507 (
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
60
61
62
63
64
65
66
67
68
69
70
|
/**********************************************************************************/
/* Definitionsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 12.01.2006 14:36:18
* Repository : swtc20
* Modell : swt
* Benutzer : swtc20
* File : /users/swtc20/code/CVentilGeraet.cpp
*
*/
// ino.module.CVentilGeraet.1090.includes
#include "CVentilGeraet.hpp"
// ino.end
#include <iostream>
using std::cout;
using std::endl;
// ino.method.pruefeGewicht.995.definition
int systemModel::AnalyseModell::CVentilGeraet::pruefeGewicht()
// ino.end
// ino.method.pruefeGewicht.995.body
{
return 0;
}
// ino.end
// ino.method.oeffneVentil.776.definition
int systemModel::AnalyseModell::CVentilGeraet::oeffneVentil()
// ino.end
// ino.method.oeffneVentil.776.body
{
cout << getname() << " oeffnet Ventil" << endl;
return 0;
}
// ino.end
// ino.method.schliesseVentil.778.definition
int systemModel::AnalyseModell::CVentilGeraet::schliesseVentil()
// ino.end
// ino.method.schliesseVentil.778.body
{
cout << getname() << " schliesst Ventil" <<endl;
return 0;
}
// ino.end
int systemModel::AnalyseModell::CVentilGeraet::startCGeraet(int i) {
return 0;
}
int systemModel::AnalyseModell::CVentilGeraet::stopCGeraet() {
return 0;
}
systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet() {
}
systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet(string s,CSubjekt* pSub): CGeraet(s){
}
systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet(string s): CGeraet(s){
}
void systemModel::AnalyseModell::CVentilGeraet::setAenderung(int i) {
mAenderung = i;
}
|