summaryrefslogtreecommitdiffstats
path: root/Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp')
-rw-r--r--Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp b/Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp
new file mode 100644
index 0000000..7257265
--- /dev/null
+++ b/Master/Modellbildung_und_Simulation/Aufgabenblatt1/Quantization/src/main.cpp
@@ -0,0 +1,22 @@
+/*
+ * main.cpp
+ *
+ * Created on: 02.04.2011
+ * Author: sven
+ */
+
+#ifndef QUANTIZATIONCONTROLLER_H_
+ #include "QuantizationController.h"
+#endif
+
+#ifndef _GTKMM_H
+ #include <gtkmm.h>
+#endif
+
+int main(int argc, char* argv[])
+{
+ Gtk::Main kit(argc,argv);
+ QuantizationController quantCtrl;
+ quantCtrl.startApp(kit);
+ return 0;
+}