From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Bachelor/Softwaretechnik1/code/bankding/konto.hpp | 84 +++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 Bachelor/Softwaretechnik1/code/bankding/konto.hpp (limited to 'Bachelor/Softwaretechnik1/code/bankding/konto.hpp') diff --git a/Bachelor/Softwaretechnik1/code/bankding/konto.hpp b/Bachelor/Softwaretechnik1/code/bankding/konto.hpp new file mode 100644 index 0000000..905e56c --- /dev/null +++ b/Bachelor/Softwaretechnik1/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 + -- cgit v1.2.3