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/Softwaretechnik/code/girokonto.hpp | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik/code/girokonto.hpp')
| -rw-r--r-- | Bachelor/Softwaretechnik/code/girokonto.hpp | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik/code/girokonto.hpp b/Bachelor/Softwaretechnik/code/girokonto.hpp new file mode 100644 index 0000000..02fbb16 --- /dev/null +++ b/Bachelor/Softwaretechnik/code/girokonto.hpp @@ -0,0 +1,87 @@ +/**********************************************************************************/
+/* Deklarationsmodul */
+/**********************************************************************************/
+/*
+ * 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/girokonto.hpp
+ *
+ */
+
+
+// ino.module.girokonto.418.ifndef
+#ifndef _GIROKONTO_HPP_418
+#define _GIROKONTO_HPP_418
+// ino.end
+
+// ino.module.girokonto.418.decIncludes
+#include "konto.hpp"
+// ino.end
+
+namespace systemModel {
+ namespace AnalyseModell {
+
+
+// ino.class.Girokonto.381.declaration
+class Girokonto: public Konto
+// ino.end
+// ino.class.Girokonto.381.body
+{
+ // ino.attribute.ueberziehungsKredit.383.declaration
+ private:
+ float ueberziehungsKredit;
+ // ino.end
+
+ // ino.method.ueberweisen.462.declaration
+ public:
+ virtual void ueberweisen(float betrag, Girokonto ZielGkto);
+ // ino.end
+ // ino.method.dauerauftragAnlegen.465.declaration
+ public:
+ virtual Dauerauftrag dauerauftragAnlegen();
+ // ino.end
+ // ino.method.dauerauftragLoeschen.467.declaration
+ public:
+ virtual void dauerauftragLoeschen(Dauerauftrag dauerAuftrag);
+ // ino.end
+
+
+
+ // ino.method.Girokonto.412.declaration
+ public:
+ Girokonto(void);
+ // ino.end
+
+ // ino.method.~Girokonto.409.declaration
+ public:
+ virtual ~Girokonto(void);
+ // ino.end
+
+ // ino.method.pruefeUeberziehungsKredit.385.declaration
+ public:
+ virtual bool pruefeUeberziehungsKredit(float betrag);
+ // ino.end
+
+};
+// ino.end
+
+
+
+
+
+ }; // namespace AnalyseModell
+}; // namespace systemModel
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace systemModel::AnalyseModell;
+#endif
+
+// ino.module.girokonto.418.endif
+#endif
+// ino.end
+
|
