ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Creating initial application directory structure.
[toast/confclerk.git]
/
src
/
app
/
main.cpp
1
#include <mainwindow.h>
2
3
#include <QtGui/QApplication>
4
5
int main(int argc, char *argv[])
6
{
7
QApplication a(argc, argv);
8
9
MainWindow w;
10
w.show();
11
return a.exec();
12
}