summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/code/CDisplay.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/CDisplay.cpp
downloadStudium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz
Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2
add new repoHEADmaster
Diffstat (limited to 'Bachelor/Softwaretechnik2/code/CDisplay.cpp')
-rw-r--r--Bachelor/Softwaretechnik2/code/CDisplay.cpp59
1 files changed, 59 insertions, 0 deletions
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 <windows.h>
+
+#include <iostream>
+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 " <<pWaage->getGesamtGewicht() << endl;
+ cout << "DISPLAY: Differenzgewicht " <<pWaage->getDifferenzGewicht() << endl;
+ return 0;
+}
+// ino.end
+
+systemModel::AnalyseModell::CDisplay::CDisplay() {
+}
+
+systemModel::AnalyseModell::CDisplay::CDisplay(CWaage *pw) {
+ pWaage=pw;
+}