-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
49 lines (42 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @file main.cpp
* @brief Fichier principal du projet
* @author tromanin
* @date vendredi 4 septembre 2015, 09:00:00
*/
/* Documentation tag for Doxygen
*/
/**
* @mainpage Documentation Back Office New World
*
* @section intro_sec Introduction
*
* Ceci est la documentation de l'application générée par Doxygen.
*
* @section Copyright T.Romanin
*
* <BR><BR>
*
*/
#include <QApplication>
#include "mainwindow.h"
/**
* @brief main est obligatoire dans tout programme C++
* @fn fonction main
* @param argc
* @param argv
* @return Renvoie a.exec()
*
* Permet de lancer la MainWindow, si il n'y a pas de retour de cette fonction,
* alors par défaut 0 sera retourné.
*/
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
return a.exec();
}