summaryrefslogtreecommitdiffstats
path: root/Master/Modellbildung_und_Simulation/Aufgabenblatt1/SineGenerator/src/main.cpp
blob: 3a1b94fdefb6b93c09cf6f7ee18cbfab223656a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * main.cpp
 *
 *  Created on: 31.03.2011
 *      Author: sven
 */
#ifndef MAINCONTROLLER_H_
	#include "MainController.h"
#endif

#ifndef _GTKMM_H
	#include <gtkmm.h>
#endif


int main(int argc, char* argv[])
{
	Gtk::Main kit(argc,argv);
	MainController mainController;
	mainController.startApp(kit);

	return 0;
}