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/code/CDisplay.cpp | 59 +++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Bachelor/Softwaretechnik2/code/CDisplay.cpp (limited to 'Bachelor/Softwaretechnik2/code/CDisplay.cpp') diff --git a/Bachelor/Softwaretechnik2/code/CDisplay.cpp b/Bachelor/Softwaretechnik2/code/CDisplay.cpp new file mode 100644 index 0000000..f085c89 --- /dev/null +++ b/Bachelor/Softwaretechnik2/code/CDisplay.cpp @@ -0,0 +1,59 @@ +/**********************************************************************************/ +/* Definitionsmodul */ +/**********************************************************************************/ +/* + * generiert mit Innovator Version 8.1.04 + * + * erstellt am: 12.01.2006 14:36:20 + * Repository : swtc20 + * Modell : swt + * Benutzer : swtc20 + * File : /users/swtc20/code/CDisplay.cpp + * + */ + + +// ino.module.CDisplay.1092.includes +#include "CDisplay.hpp" +// ino.end +#include + +#include +using std::cout; +using std::endl; + +// ino.method.starte.866.definition +int systemModel::AnalyseModell::CDisplay::starte() +// ino.end +// ino.method.starte.866.body +{ + return 0; +} +// ino.end + +// ino.method.zeigeGewichtAn.732.definition +void systemModel::AnalyseModell::CDisplay::zeigeGewichtAn() +// ino.end +// ino.method.zeigeGewichtAn.732.body +{ +} +// ino.end + +// ino.method.aktualisiere.497.definition +int systemModel::AnalyseModell::CDisplay::aktualisiere() +// ino.end +// ino.method.aktualisiere.497.body +{ + //Sleep(500); + cout << "DISPLAY: Gesamtgewicht " <getGesamtGewicht() << endl; + cout << "DISPLAY: Differenzgewicht " <getDifferenzGewicht() << endl; + return 0; +} +// ino.end + +systemModel::AnalyseModell::CDisplay::CDisplay() { +} + +systemModel::AnalyseModell::CDisplay::CDisplay(CWaage *pw) { + pWaage=pw; +} -- cgit v1.2.3