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/swtBank/konto.hpp | 79 +++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 Bachelor/Softwaretechnik1/swtBank/konto.hpp (limited to 'Bachelor/Softwaretechnik1/swtBank/konto.hpp') 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 + -- cgit v1.2.3