forked from lopespt/QtSortingAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
33 lines (28 loc) · 758 Bytes
/
main.cpp
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
26
27
28
29
30
31
32
33
/*
* =====================================================================================
*
* Filename: main.cpp
*
* Description: Teste de uma janela simple
*
* Version: 1.0
* Created: 11/04/2014 13:55:59
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#include "mainWindow.h"
#include <QApplication>
#include <QObject>
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
JanelaPrincipal *P = new JanelaPrincipal();
P->setVisible(true);
P->setWindowTitle(
"Sorting Algorithms - CC5661 - FEI - Prof. Guilherme Wachs");
return a.exec();
}