summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik/swtBank/konto.cpp
blob: 4864c9dfe5f9aff26606315feb333c8beddb1ebc (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
/**********************************************************************************/
/*                                 Definitionsmodul                               */
/**********************************************************************************/
/* 
 * 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.cpp
 *
 */


// ino.module.konto.512.includes 
#include "konto.hpp"
// ino.end


// ino.method.Konto.499.definition 
Konto::Konto(void)
// ino.end
// ino.method.Konto.499.body 
{
	kontostand=0;
	kontonummer=12345678;
}
// ino.end

// ino.method.~Konto.496.definition 
Konto::~Konto(void)
// ino.end
// ino.method.~Konto.496.body 
{
}
// ino.end

// ino.method.geldEinzahlen.470.definition 
void Konto::geldEinzahlen(float betrag)
// ino.end
// ino.method.geldEinzahlen.470.body 
{
	kontostand+=betrag;
}
// ino.end

// ino.method.geldAbheben.472.definition 
void Konto::geldAbheben(float betrag)
// ino.end
// ino.method.geldAbheben.472.body 
{
	kontostand-=betrag;
}
// ino.end

float Konto::getKontostand()
{
	return kontostand;
}