From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Bachelor/Softwaretechnik2/mixer/CVentilGeraet.cpp | 70 +++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 Bachelor/Softwaretechnik2/mixer/CVentilGeraet.cpp (limited to 'Bachelor/Softwaretechnik2/mixer/CVentilGeraet.cpp') diff --git a/Bachelor/Softwaretechnik2/mixer/CVentilGeraet.cpp b/Bachelor/Softwaretechnik2/mixer/CVentilGeraet.cpp new file mode 100644 index 0000000..5b0fb50 --- /dev/null +++ b/Bachelor/Softwaretechnik2/mixer/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 +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" <