/* * main.cpp * * Created on: 11.05.2011 * Author: sven */ #ifndef DICESIMCONTROLLER_H_ #include "DiceSimController.h" #endif #ifndef _GTKMM_H #include #endif int main(int argc, char* argv[]) { Gtk::Main kit(argc,argv); DiceSimController diceSimController; diceSimController.startApp(kit); return 0; }