repo.or.cz
/
gtkmmProject.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cstring header was included. (Compile in Debian)
[gtkmmProject.git]
/
src
/
main.cpp
blob
ba9044a43324400dad78aa2b92442cc1aae20257
1
#include <gtkmm/main.h>
2
#include
"MainWindow.h"
3
//#include "testWidget.h"
4
5
int
main
(
int
argc
,
char
*
argv
[])
6
{
7
Gtk
::
Main
kit
(
argc
,
argv
);
8
9
MainWindow mainWindow
;
10
Gtk
::
Main
::
run
(
mainWindow
);
11
//TestWidget tWidget;
12
//Gtk::Main::run (tWidget);
13
14
return
0
;
15
}