diff options
Diffstat (limited to 'Master/Modellbildung_und_Simulation/Aufgabenblatt1/DFTApp/src/main.cpp')
| -rw-r--r-- | Master/Modellbildung_und_Simulation/Aufgabenblatt1/DFTApp/src/main.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/Modellbildung_und_Simulation/Aufgabenblatt1/DFTApp/src/main.cpp b/Master/Modellbildung_und_Simulation/Aufgabenblatt1/DFTApp/src/main.cpp new file mode 100644 index 0000000..0791767 --- /dev/null +++ b/Master/Modellbildung_und_Simulation/Aufgabenblatt1/DFTApp/src/main.cpp @@ -0,0 +1,21 @@ +/* + * main.cpp + * + * Created on: 29.04.2011 + * Author: sven + */ +#ifndef DFTAPPCONTROLLER_H_ + #include "DFTAppController.h" +#endif + +#ifndef _GTKMM_H + #include <gtkmm.h> +#endif + +int main(int argc,char* argv[]) +{ + Gtk::Main kit(argc,argv); + DFTAppController dftAppController; + dftAppController.startApp(kit); + return 0; +} |
