forked from karlphillip/GraphicsProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
26 lines (20 loc) · 644 Bytes
/
main.cpp
File metadata and controls
26 lines (20 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Copyright (C) 2013 Karl Phillip Buhr <[email protected]>
*
* This work is licensed under the Creative Commons Attribution-ShareAlike License.
* To view a copy of this license, visit:
* https://creativecommons.org/licenses/by-sa/2.5/legalcode
*
* Or to read the human-readable summary of the license:
* https://creativecommons.org/licenses/by-sa/2.5/
*/
#include "cvImage.h"
#include <QApplication>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
cvImage win;
win.show();
QObject::connect(&win, SIGNAL(closed()),
&app, SLOT(quit()) );
return app.exec();
}