summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/CGeraet.cpp
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Bachelor/Softwaretechnik2/mixer/CGeraet.cpp
downloadStudium-master.tar.gz
Studium-master.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Softwaretechnik2/mixer/CGeraet.cpp')
-rw-r--r--Bachelor/Softwaretechnik2/mixer/CGeraet.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/mixer/CGeraet.cpp b/Bachelor/Softwaretechnik2/mixer/CGeraet.cpp
new file mode 100644
index 0000000..1c54d5e
--- /dev/null
+++ b/Bachelor/Softwaretechnik2/mixer/CGeraet.cpp
@@ -0,0 +1,54 @@
+/**********************************************************************************/
+/* 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/CGeraet.cpp
+ *
+ */
+
+
+// ino.module.CGeraet.1088.includes
+#include "CGeraet.hpp"
+// ino.end
+
+using std::cout;
+using std::endl;
+
+// ino.method.startCGeraet.465.definition
+int systemModel::AnalyseModell::CGeraet::startCGeraet(int)
+// ino.end
+// ino.method.startCGeraet.465.body
+{
+ return 0;
+}
+// ino.end
+
+// ino.method.stopCGeraet.467.definition
+int systemModel::AnalyseModell::CGeraet::stopCGeraet()
+// ino.end
+// ino.method.stopCGeraet.467.body
+{
+ return 0;
+}
+// ino.end
+
+systemModel::AnalyseModell::CGeraet::CGeraet() {
+}
+systemModel::AnalyseModell::CGeraet::CGeraet(string s) {
+ mName = s;
+}
+
+void systemModel::AnalyseModell::CGeraet::setWert(int i)
+{
+ mWert=i;
+}
+void systemModel::AnalyseModell::CGeraet::setName(string s)
+{
+ mName=s;
+}