Visualisierung 2
Comparison of Hue Preserving Rendering to Alpha Composing
Main.cpp
Go to the documentation of this file.
1
8
#include "
MainWindow.h
"
9
10
#include <QApplication>
11
12
int
main
(
int
argc,
char
*argv[])
13
{
14
#ifdef _WIN32
15
if
(AttachConsole(ATTACH_PARENT_PROCESS)) {
16
freopen(
"CONOUT$"
,
"w"
, stdout);
17
freopen(
"CONOUT$"
,
"w"
, stderr);
18
}
19
#endif
20
21
QApplication app(argc, argv);
22
23
MainWindow
mainWindow;
24
mainWindow.show();
25
26
return
app.exec();
27
28
}
MainWindow.h
main
int main(int argc, char *argv[])
Definition:
Main.cpp:12
MainWindow
The MainWindow class handliung GUI interactions.
Definition:
MainWindow.h:31
src
Main.cpp
Generated by
1.8.14