blob: 970c6f960a31ab3079f48f65016e84b54b24dd0d (
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
|
/**********************************************************************************/
/* Definitionsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 05.05.2005 14:01:15
* Repository : swtd29
* Modell : swt
* Benutzer : swtd29
* File : /users/swtd29/code/konto.cpp
*
*/
// ino.module.konto.417.includes
#include "konto.hpp"
// ino.end
// ino.method.getKontostand.421.definition
float systemModel::AnalyseModell::Konto::getKontostand()
// ino.end
// ino.method.getKontostand.421.body
{
return Kontostand;
}
// ino.end
// ino.method.~Konto.403.definition
systemModel::AnalyseModell::Konto::~Konto(void)
// ino.end
// ino.method.~Konto.403.body
{
}
// ino.end
// ino.method.Konto.400.definition
systemModel::AnalyseModell::Konto::Konto(void)
// ino.end
// ino.method.Konto.400.body
{
}
// ino.end
// ino.method.geldEinzahlen.377.definition
void systemModel::AnalyseModell::Konto::geldEinzahlen(float betrag)
// ino.end
// ino.method.geldEinzahlen.377.body
{
Kontostand=Kontostand+betrag;
}
// ino.end
// ino.method.geldAbheben.379.definition
void systemModel::AnalyseModell::Konto::geldAbheben(float betrag)
// ino.end
// ino.method.geldAbheben.379.body
{
Kontostand=Kontostand-betrag;
}
// ino.end
|