blob: c27f5efc4e557ecff625095c35fcbbe061baf041 (
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
85
86
87
88
89
90
91
92
93
94
|
/**********************************************************************************/
/* Deklarationsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 19.05.2005 15:30:22
* Repository : swtd29
* Modell : swt
* Benutzer : swtd29
* File : /users/swtd29/code/dauerauftrag.hpp
*
*/
// ino.module.dauerauftrag.623.ifndef
#ifndef _DAUERAUFTRAG_HPP_623
#define _DAUERAUFTRAG_HPP_623
// ino.end
namespace systemModel {
namespace AnalyseModell {
// ino.class.Dauerauftrag.587.declaration
class Dauerauftrag
// ino.end
// ino.class.Dauerauftrag.587.body
{
// ino.attribute.Zeitabstand.592.declaration
private:
int Zeitabstand;
// ino.end
// ino.attribute.Betrag.590.declaration
private:
float Betrag;
// ino.end
// ino.attribute.ZielGirokonto.596.declaration
private:
Girokonto ZielGirokonto;
// ino.end
// ino.method.getZielGirokonto.619.declaration
public:
virtual Girokonto getZielGirokonto(void) const;
// ino.end
// ino.method.getBetrag.616.declaration
public:
virtual float getBetrag(void) const;
// ino.end
// ino.method.getZeitabstand.613.declaration
public:
virtual int getZeitabstand(void) const;
// ino.end
// ino.method.setZielGirokonto.610.declaration
public:
virtual void setZielGirokonto(Girokonto ZielGirokonto);
// ino.end
// ino.method.setBetrag.607.declaration
public:
virtual void setBetrag(float Betrag);
// ino.end
// ino.method.setZeitabstand.604.declaration
public:
virtual void setZeitabstand(int Zeitabstand);
// ino.end
};
// ino.end
}; // namespace AnalyseModell
}; // namespace systemModel
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace systemModel::AnalyseModell;
#endif
// ino.module.dauerauftrag.623.endif
#endif
// ino.end
|