diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Softwaretechnik1/swtBank/girokonto.hpp | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik1/swtBank/girokonto.hpp')
| -rw-r--r-- | Bachelor/Softwaretechnik1/swtBank/girokonto.hpp | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik1/swtBank/girokonto.hpp b/Bachelor/Softwaretechnik1/swtBank/girokonto.hpp new file mode 100644 index 0000000..a0d4388 --- /dev/null +++ b/Bachelor/Softwaretechnik1/swtBank/girokonto.hpp @@ -0,0 +1,70 @@ +/**********************************************************************************/
+/* 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/girokonto.hpp
+ *
+ */
+
+
+// ino.module.girokonto.511.ifndef
+#ifndef _GIROKONTO_HPP_511
+#define _GIROKONTO_HPP_511
+// ino.end
+
+// ino.module.girokonto.511.decIncludes
+#include "konto.hpp"
+// ino.end
+
+namespace analysis_system {
+
+
+// ino.class.Girokonto.474.declaration
+class Girokonto: public Konto
+// ino.end
+// ino.class.Girokonto.474.body
+{
+ // ino.attribute.ueberziehungsKredit.476.declaration
+ private:
+ float ueberziehungsKredit;
+ // ino.end
+
+ // ino.method.Girokonto.505.declaration
+ public:
+ Girokonto(void);
+ // ino.end
+
+ // ino.method.~Girokonto.502.declaration
+ public:
+ virtual ~Girokonto(void);
+ // ino.end
+
+ // ino.method.pruefeUeberziehungsKredit.478.declaration
+ public:
+ virtual bool pruefeUeberziehungsKredit(float betrag);
+ // ino.end
+
+};
+// ino.end
+
+
+
+
+
+}; // namespace analysis system
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace analysis_system;
+#endif
+
+// ino.module.girokonto.511.endif
+#endif
+// ino.end
+
|
