blob: cc07982009620c9a0d3280c1b330571bc0a674f3 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/**********************************************************************************/
/* Deklarationsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 05.05.2005 14:01:14
* Repository : swtd29
* Modell : swt
* Benutzer : swtd29
* File : /users/swtd29/code/konto.hpp
*
*/
// ino.module.konto.416.ifndef
#ifndef _KONTO_HPP_416
#define _KONTO_HPP_416
// ino.end
namespace systemModel {
namespace AnalyseModell {
// ino.class.Konto.371.declaration
class Konto
// ino.end
// ino.class.Konto.371.body
{
// ino.attribute.Kontonummer.373.declaration
private:
float Kontonummer;
// ino.end
// ino.attribute.Kontostand.375.declaration
private:
float Kontostand;
// ino.end
// ino.method.getKontostand.421.declaration
public:
virtual float getKontostand();
// ino.end
// ino.method.~Konto.403.declaration
public:
virtual ~Konto(void);
// ino.end
// ino.method.Konto.400.declaration
public:
Konto(void);
// ino.end
// ino.method.geldEinzahlen.377.declaration
public:
virtual void geldEinzahlen(float betrag);
// ino.end
// ino.method.geldAbheben.379.declaration
public:
virtual void geldAbheben(float betrag);
// ino.end
};
// ino.end
}; // namespace AnalyseModell
}; // namespace systemModel
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace systemModel::AnalyseModell;
#endif
// ino.module.konto.416.endif
#endif
// ino.end
|