From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Bachelor/Softwaretechnik/code/bankding/konto.cpp | 64 ++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 Bachelor/Softwaretechnik/code/bankding/konto.cpp (limited to 'Bachelor/Softwaretechnik/code/bankding/konto.cpp') diff --git a/Bachelor/Softwaretechnik/code/bankding/konto.cpp b/Bachelor/Softwaretechnik/code/bankding/konto.cpp new file mode 100644 index 0000000..970c6f9 --- /dev/null +++ b/Bachelor/Softwaretechnik/code/bankding/konto.cpp @@ -0,0 +1,64 @@ +/**********************************************************************************/ +/* Definitionsmodul */ +/**********************************************************************************/ +/* + * 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/konto.cpp + * + */ + + +// ino.module.konto.417.includes +#include "konto.hpp" +// ino.end + + +// ino.method.getKontostand.421.definition +float systemModel::AnalyseModell::Konto::getKontostand() +// ino.end +// ino.method.getKontostand.421.body +{ + return Kontostand; +} +// ino.end + +// ino.method.~Konto.403.definition +systemModel::AnalyseModell::Konto::~Konto(void) +// ino.end +// ino.method.~Konto.403.body +{ +} +// ino.end + +// ino.method.Konto.400.definition +systemModel::AnalyseModell::Konto::Konto(void) +// ino.end +// ino.method.Konto.400.body +{ +} +// ino.end + +// ino.method.geldEinzahlen.377.definition +void systemModel::AnalyseModell::Konto::geldEinzahlen(float betrag) +// ino.end +// ino.method.geldEinzahlen.377.body +{ + Kontostand=Kontostand+betrag; +} +// ino.end + +// ino.method.geldAbheben.379.definition +void systemModel::AnalyseModell::Konto::geldAbheben(float betrag) +// ino.end +// ino.method.geldAbheben.379.body +{ + Kontostand=Kontostand-betrag; +} +// ino.end + + -- cgit v1.2.3