repo.or.cz
/
fic.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Many smaller changes.
[fic.git]
/
main.cpp
blob
d085c1ae449dec7749a005bf483111dffbceb037
1
#include
"gui.h"
2
#include
"modules.h"
3
4
int
main
(
int
argc
,
char
**
argv
) {
5
int
result
;
6
{
7
QApplication
app
(
argc
,
argv
);
8
ModuleFactory
::
init
();
9
{
10
ImageViewer
viewer
(
app
);
11
viewer
.
show
();
12
result
=
app
.
exec
();
13
}
14
ModuleFactory
::
destroy
();
15
}
16
return
result
;
17
}