summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik/code/bankding/konto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Softwaretechnik/code/bankding/konto.cpp')
-rw-r--r--Bachelor/Softwaretechnik/code/bankding/konto.cpp64
1 files changed, 64 insertions, 0 deletions
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
+
+