blob: 034a7975e46c828035d7830417094bae3bb90b1b (
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
|
/**********************************************************************************/
/* Deklarationsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 01.05.2005 14:31:27
* Repository : swtd29
* Modell : swtd29
* Benutzer : ADMIN
* File : /tmp/src/konto.hpp
*
*/
// ino.module.konto.510.ifndef
#ifndef _KONTO_HPP_510
#define _KONTO_HPP_510
// ino.end
namespace analysis_system {
// ino.class.Konto.464.declaration
class Konto
// ino.end
// ino.class.Konto.464.body
{
// ino.attribute.Kontostand.466.declaration
private:
float kontostand;
// ino.end
// ino.attribute.Kontonummer.468.declaration
private:
float kontonummer;
// ino.end
// ino.method.Konto.499.declaration
public:
Konto(void);
// ino.end
// ino.method.~Konto.496.declaration
public:
virtual ~Konto(void);
// ino.end
// ino.method.geldEinzahlen.470.declaration
public:
virtual void geldEinzahlen(float betrag);
// ino.end
// ino.method.geldAbheben.472.declaration
public:
virtual void geldAbheben(float betrag);
// ino.end
public:
virtual float getKontostand();
};
// ino.end
}; // namespace analysis system
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace analysis_system;
#endif
// ino.module.konto.510.endif
#endif
// ino.end
|