blob: d88b0faaa7a95006c07650f65d7dab16568f4e14 (
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
|
/**********************************************************************************/
/* Deklarationsmodul */
/**********************************************************************************/
/*
* 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/girokonto.hpp
*
*/
// ino.module.girokonto.418.ifndef
#ifndef _GIROKONTO_HPP_418
#define _GIROKONTO_HPP_418
// ino.end
// ino.module.girokonto.418.decIncludes
#include "konto.hpp"
// ino.end
namespace systemModel {
namespace AnalyseModell {
// ino.class.Girokonto.381.declaration
class Girokonto: public Konto
// ino.end
// ino.class.Girokonto.381.body
{
// ino.attribute.ueberziehungsKredit.383.declaration
private:
float ueberziehungsKredit;
// ino.end
// ino.method.Girokonto.412.declaration
public:
Girokonto(void);
// ino.end
// ino.method.~Girokonto.409.declaration
public:
virtual ~Girokonto(void);
// ino.end
// ino.method.pruefeUeberziehungsKredit.385.declaration
public:
virtual bool pruefeUeberziehungsKredit(float betrag);
// ino.end
};
// ino.end
}; // namespace AnalyseModell
}; // namespace systemModel
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace systemModel::AnalyseModell;
#endif
// ino.module.girokonto.418.endif
#endif
// ino.end
|