blob: cc6a6a35ce484efd5a59264888dfdce34208fe40 (
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
|
/**********************************************************************************/
/* Definitionsmodul */
/**********************************************************************************/
/*
* generiert mit Innovator Version 8.1.04
*
* erstellt am: 19.05.2005 15:30:24
* Repository : swtd29
* Modell : swt
* Benutzer : swtd29
* File : /users/swtd29/code/dauerauftrag.cpp
*
*/
// ino.module.dauerauftrag.624.includes
#include "dauerauftrag.hpp"
// ino.end
// ino.method.getZielGirokonto.619.definition
Girokonto systemModel::AnalyseModell::Dauerauftrag::getZielGirokonto(void) const
// ino.end
// ino.method.getZielGirokonto.619.body
{ return ZielGirokonto; }
// ino.end
// ino.method.getBetrag.616.definition
float systemModel::AnalyseModell::Dauerauftrag::getBetrag(void) const
// ino.end
// ino.method.getBetrag.616.body
{ return Betrag; }
// ino.end
// ino.method.getZeitabstand.613.definition
int systemModel::AnalyseModell::Dauerauftrag::getZeitabstand(void) const
// ino.end
// ino.method.getZeitabstand.613.body
{ return Zeitabstand; }
// ino.end
// ino.method.setZielGirokonto.610.definition
void systemModel::AnalyseModell::Dauerauftrag::setZielGirokonto(Girokonto ZielGirokonto)
// ino.end
// ino.method.setZielGirokonto.610.body
{ this->ZielGirokonto = ZielGirokonto; }
// ino.end
// ino.method.setBetrag.607.definition
void systemModel::AnalyseModell::Dauerauftrag::setBetrag(float Betrag)
// ino.end
// ino.method.setBetrag.607.body
{ this->Betrag = Betrag; }
// ino.end
// ino.method.setZeitabstand.604.definition
void systemModel::AnalyseModell::Dauerauftrag::setZeitabstand(int Zeitabstand)
// ino.end
// ino.method.setZeitabstand.604.body
{ this->Zeitabstand = Zeitabstand; }
// ino.end
|