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/Softwaretechnik2/code/CWaage.hpp | |
| download | Studium-master.tar.gz Studium-master.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik2/code/CWaage.hpp')
| -rw-r--r-- | Bachelor/Softwaretechnik2/code/CWaage.hpp | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/code/CWaage.hpp b/Bachelor/Softwaretechnik2/code/CWaage.hpp new file mode 100644 index 0000000..e5bab7f --- /dev/null +++ b/Bachelor/Softwaretechnik2/code/CWaage.hpp @@ -0,0 +1,110 @@ +/**********************************************************************************/
+/* Deklarationsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 12.01.2006 14:36:14
+ * Repository : swtc20
+ * Modell : swt
+ * Benutzer : swtc20
+ * File : /users/swtc20/code/CWaage.hpp
+ *
+ */
+
+
+// ino.module.CWaage.1073.ifndef
+#ifndef _CWAAGE_HPP_1073
+#define _CWAAGE_HPP_1073
+// ino.end
+#include <string>
+#include "CSubjekt.hpp"
+#include "CVentilGeraet.hpp"
+using std::string;
+
+
+namespace systemModel {
+ namespace AnalyseModell {
+
+
+// ino.class.CWaage.436.declaration
+class CWaage: public CSubjekt
+// ino.end
+// ino.class.CWaage.436.body
+{
+ // ino.attribute.mGesamtGewicht.481.declaration
+ private:
+ int mGesamtGewicht;
+ // ino.end
+
+ // ino.attribute.mDifferenzGewicht.483.declaration
+ private:
+ int mDifferenzGewicht;
+ // ino.end
+
+ // ino.method.aktiviere.760.declaration
+ public:
+ virtual int aktiviere(CVentilGeraet *);
+ // ino.end
+
+ // ino.method.gewichtErreicht.762.declaration
+ public:
+ virtual int gewichtErreicht();
+ // ino.end
+
+ // ino.method.gewichtNichtErreicht.764.declaration
+ public:
+ virtual int gewichtNichtErreicht();
+ // ino.end
+
+ // ino.method.erhoeheGewicht.568.declaration
+ public:
+ virtual int erhoeheGewicht(int fBetrag);
+ // ino.end
+
+ // ino.method.verringereGewicht.570.declaration
+ public:
+ virtual int verringereGewicht(int fBetrag);
+ // ino.end
+
+ // ino.method.getGesamtGewicht.564.declaration
+ public:
+ virtual int getGesamtGewicht();
+ // ino.end
+
+ // ino.method.getDifferenzGewicht.566.declaration
+ public:
+ virtual int getDifferenzGewicht();
+ // ino.end
+
+ // ino.method.tariere.487.declaration
+ public:
+ virtual void tariere();
+ // ino.end
+ public:
+ CWaage();
+ private:
+ CVentilGeraet *pAktVentilGeraet;
+ public:
+ void aendereGewicht();
+ private:
+ bool mGewichtErreicht;
+};
+// ino.end
+
+
+
+
+
+ }; // namespace AnalyseModell
+}; // namespace systemModel
+
+
+#if !defined(NO_IMPLICIT_NAMESPACE_USE)
+using namespace systemModel::AnalyseModell;
+#endif
+
+// ino.module.CWaage.1073.endif
+#endif
+// ino.end
+
|
