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/dauerauftrag.hpp | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik/code/dauerauftrag.hpp')
| -rw-r--r-- | Bachelor/Softwaretechnik/code/dauerauftrag.hpp | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik/code/dauerauftrag.hpp b/Bachelor/Softwaretechnik/code/dauerauftrag.hpp new file mode 100644 index 0000000..c27f5ef --- /dev/null +++ b/Bachelor/Softwaretechnik/code/dauerauftrag.hpp @@ -0,0 +1,94 @@ +/**********************************************************************************/
+/* Deklarationsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 19.05.2005 15:30:22
+ * Repository : swtd29
+ * Modell : swt
+ * Benutzer : swtd29
+ * File : /users/swtd29/code/dauerauftrag.hpp
+ *
+ */
+
+
+// ino.module.dauerauftrag.623.ifndef
+#ifndef _DAUERAUFTRAG_HPP_623
+#define _DAUERAUFTRAG_HPP_623
+// ino.end
+
+
+namespace systemModel {
+ namespace AnalyseModell {
+
+
+// ino.class.Dauerauftrag.587.declaration
+class Dauerauftrag
+// ino.end
+// ino.class.Dauerauftrag.587.body
+{
+ // ino.attribute.Zeitabstand.592.declaration
+ private:
+ int Zeitabstand;
+ // ino.end
+
+ // ino.attribute.Betrag.590.declaration
+ private:
+ float Betrag;
+ // ino.end
+
+ // ino.attribute.ZielGirokonto.596.declaration
+ private:
+ Girokonto ZielGirokonto;
+ // ino.end
+
+ // ino.method.getZielGirokonto.619.declaration
+ public:
+ virtual Girokonto getZielGirokonto(void) const;
+ // ino.end
+
+ // ino.method.getBetrag.616.declaration
+ public:
+ virtual float getBetrag(void) const;
+ // ino.end
+
+ // ino.method.getZeitabstand.613.declaration
+ public:
+ virtual int getZeitabstand(void) const;
+ // ino.end
+
+ // ino.method.setZielGirokonto.610.declaration
+ public:
+ virtual void setZielGirokonto(Girokonto ZielGirokonto);
+ // ino.end
+
+ // ino.method.setBetrag.607.declaration
+ public:
+ virtual void setBetrag(float Betrag);
+ // ino.end
+
+ // ino.method.setZeitabstand.604.declaration
+ public:
+ virtual void setZeitabstand(int Zeitabstand);
+ // ino.end
+
+};
+// ino.end
+
+
+
+
+
+ }; // namespace AnalyseModell
+}; // namespace systemModel
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace systemModel::AnalyseModell;
+#endif
+
+// ino.module.dauerauftrag.623.endif
+#endif
+// ino.end
+
|
