CEBL
2.1
Main Page
Namespaces
Data Structures
Files
File List
Globals
cebl_gui.cpp
Go to the documentation of this file.
1
2
#include "
CEBLModel.hpp
"
3
#include "
gui/CEBLViewGTK.hpp
"
4
5
6
7
int
main
(
int
ac,
char
** av)
8
{
9
CEBLModel
* model =
new
CEBLModel
;
10
model->
InitModel
(ac,av);
11
if
(model->
initializedSuccessfully
())
12
{
13
//start the view
14
CEBLViewGTK
* view =
new
CEBLViewGTK
(model,ac,av);
15
// will exit when gtk loop ends
16
view->
Start
();
17
18
19
delete
view;
20
}
21
delete
model;
22
return
0;
23
}
Generated by
1.8.1.1