repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce old redir program
[lcapit-junk-code.git]
/
qt-course
/
exer341-copy-text
/
main.cpp
blob
f827ca8ed8895f6cbe5ea1ea8b76762ba8c4883c
1
#include <QApplication>
2
3
#include
"MyWidget.h"
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
QApplication
app
(
argc
,
argv
);
8
9
MyWidget w
;
10
w
.
show
();
11
12
return
app
.
exec
();
13
}