summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik/code/bankding/konto.hpp
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Bachelor/Softwaretechnik/code/bankding/konto.hpp
downloadStudium-master.tar.gz
Studium-master.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Softwaretechnik/code/bankding/konto.hpp')
-rw-r--r--Bachelor/Softwaretechnik/code/bankding/konto.hpp84
1 files changed, 84 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik/code/bankding/konto.hpp b/Bachelor/Softwaretechnik/code/bankding/konto.hpp
new file mode 100644
index 0000000..cc07982
--- /dev/null
+++ b/Bachelor/Softwaretechnik/code/bankding/konto.hpp
@@ -0,0 +1,84 @@
+/**********************************************************************************/
+/* Deklarationsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 05.05.2005 14:01:14
+ * Repository : swtd29
+ * Modell : swt
+ * Benutzer : swtd29
+ * File : /users/swtd29/code/konto.hpp
+ *
+ */
+
+
+// ino.module.konto.416.ifndef
+#ifndef _KONTO_HPP_416
+#define _KONTO_HPP_416
+// ino.end
+
+
+namespace systemModel {
+ namespace AnalyseModell {
+
+
+// ino.class.Konto.371.declaration
+class Konto
+// ino.end
+// ino.class.Konto.371.body
+{
+ // ino.attribute.Kontonummer.373.declaration
+ private:
+ float Kontonummer;
+ // ino.end
+
+ // ino.attribute.Kontostand.375.declaration
+ private:
+ float Kontostand;
+ // ino.end
+
+ // ino.method.getKontostand.421.declaration
+ public:
+ virtual float getKontostand();
+ // ino.end
+
+ // ino.method.~Konto.403.declaration
+ public:
+ virtual ~Konto(void);
+ // ino.end
+
+ // ino.method.Konto.400.declaration
+ public:
+ Konto(void);
+ // ino.end
+
+ // ino.method.geldEinzahlen.377.declaration
+ public:
+ virtual void geldEinzahlen(float betrag);
+ // ino.end
+
+ // ino.method.geldAbheben.379.declaration
+ public:
+ virtual void geldAbheben(float betrag);
+ // ino.end
+
+};
+// ino.end
+
+
+
+
+
+ }; // namespace AnalyseModell
+}; // namespace systemModel
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace systemModel::AnalyseModell;
+#endif
+
+// ino.module.konto.416.endif
+#endif
+// ino.end
+