summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik1/swtBank/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/Softwaretechnik1/swtBank/konto.hpp
downloadStudium-master.tar.gz
Studium-master.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Softwaretechnik1/swtBank/konto.hpp')
-rw-r--r--Bachelor/Softwaretechnik1/swtBank/konto.hpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik1/swtBank/konto.hpp b/Bachelor/Softwaretechnik1/swtBank/konto.hpp
new file mode 100644
index 0000000..034a797
--- /dev/null
+++ b/Bachelor/Softwaretechnik1/swtBank/konto.hpp
@@ -0,0 +1,79 @@
+/**********************************************************************************/
+/* Deklarationsmodul */
+/**********************************************************************************/
+/*
+ * 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.hpp
+ *
+ */
+
+
+// ino.module.konto.510.ifndef
+#ifndef _KONTO_HPP_510
+#define _KONTO_HPP_510
+// ino.end
+
+
+namespace analysis_system {
+
+
+// ino.class.Konto.464.declaration
+class Konto
+// ino.end
+// ino.class.Konto.464.body
+{
+ // ino.attribute.Kontostand.466.declaration
+ private:
+ float kontostand;
+ // ino.end
+
+ // ino.attribute.Kontonummer.468.declaration
+ private:
+ float kontonummer;
+ // ino.end
+
+ // ino.method.Konto.499.declaration
+ public:
+ Konto(void);
+ // ino.end
+
+ // ino.method.~Konto.496.declaration
+ public:
+ virtual ~Konto(void);
+ // ino.end
+
+ // ino.method.geldEinzahlen.470.declaration
+ public:
+ virtual void geldEinzahlen(float betrag);
+ // ino.end
+
+ // ino.method.geldAbheben.472.declaration
+ public:
+ virtual void geldAbheben(float betrag);
+ // ino.end
+
+ public:
+ virtual float getKontostand();
+};
+// ino.end
+
+
+
+
+
+}; // namespace analysis system
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace analysis_system;
+#endif
+
+// ino.module.konto.510.endif
+#endif
+// ino.end
+