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/mixer/CRezeptSchritt.cpp | |
| download | Studium-master.tar.gz Studium-master.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik2/mixer/CRezeptSchritt.cpp')
| -rw-r--r-- | Bachelor/Softwaretechnik2/mixer/CRezeptSchritt.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/mixer/CRezeptSchritt.cpp b/Bachelor/Softwaretechnik2/mixer/CRezeptSchritt.cpp new file mode 100644 index 0000000..91fcd3a --- /dev/null +++ b/Bachelor/Softwaretechnik2/mixer/CRezeptSchritt.cpp @@ -0,0 +1,40 @@ +/**********************************************************************************/
+/* Definitionsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 12.01.2006 14:36:19
+ * Repository : swtc20
+ * Modell : swt
+ * Benutzer : swtc20
+ * File : /users/swtc20/code/CRezeptSchritt.cpp
+ *
+ */
+
+
+// ino.module.CRezeptSchritt.1078.includes
+#include "CRezeptSchritt.hpp"
+// ino.end
+
+
+// ino.method.verarbeite.758.definition
+int systemModel::AnalyseModell::CRezeptschritt::verarbeite()
+// ino.end
+// ino.method.verarbeite.758.body
+{
+ pcGeraet->startCGeraet(mWert);
+
+ return 0;
+}
+// ino.end
+systemModel::AnalyseModell::CRezeptschritt::CRezeptschritt() {
+}
+
+systemModel::AnalyseModell::CRezeptschritt::CRezeptschritt(string s, int w, CGeraet * pcg) {
+ mZutat = s;
+ mWert = w;
+ pcGeraet = pcg;
+ pcGeraet->setName(mZutat);
+}
+
|
