summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/code/CVentilGeraet.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/code/CVentilGeraet.cpp
downloadStudium-master.tar.gz
Studium-master.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Softwaretechnik2/code/CVentilGeraet.cpp')
-rw-r--r--Bachelor/Softwaretechnik2/code/CVentilGeraet.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/code/CVentilGeraet.cpp b/Bachelor/Softwaretechnik2/code/CVentilGeraet.cpp
new file mode 100644
index 0000000..5b0fb50
--- /dev/null
+++ b/Bachelor/Softwaretechnik2/code/CVentilGeraet.cpp
@@ -0,0 +1,70 @@
+/**********************************************************************************/
+/* Definitionsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 12.01.2006 14:36:18
+ * Repository : swtc20
+ * Modell : swt
+ * Benutzer : swtc20
+ * File : /users/swtc20/code/CVentilGeraet.cpp
+ *
+ */
+
+
+// ino.module.CVentilGeraet.1090.includes
+#include "CVentilGeraet.hpp"
+// ino.end
+
+#include <iostream>
+using std::cout;
+using std::endl;
+
+// ino.method.pruefeGewicht.995.definition
+int systemModel::AnalyseModell::CVentilGeraet::pruefeGewicht()
+// ino.end
+// ino.method.pruefeGewicht.995.body
+{
+ return 0;
+}
+// ino.end
+
+// ino.method.oeffneVentil.776.definition
+int systemModel::AnalyseModell::CVentilGeraet::oeffneVentil()
+// ino.end
+// ino.method.oeffneVentil.776.body
+{
+ cout << getname() << " oeffnet Ventil" << endl;
+ return 0;
+}
+// ino.end
+
+// ino.method.schliesseVentil.778.definition
+int systemModel::AnalyseModell::CVentilGeraet::schliesseVentil()
+// ino.end
+// ino.method.schliesseVentil.778.body
+{
+ cout << getname() << " schliesst Ventil" <<endl;
+ return 0;
+}
+// ino.end
+
+int systemModel::AnalyseModell::CVentilGeraet::startCGeraet(int i) {
+ return 0;
+}
+
+int systemModel::AnalyseModell::CVentilGeraet::stopCGeraet() {
+ return 0;
+}
+
+systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet() {
+}
+systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet(string s,CSubjekt* pSub): CGeraet(s){
+}
+systemModel::AnalyseModell::CVentilGeraet::CVentilGeraet(string s): CGeraet(s){
+}
+
+void systemModel::AnalyseModell::CVentilGeraet::setAenderung(int i) {
+ mAenderung = i;
+}