ryxeo-webphotoalbum-git / main.cpp @ ef177d24
Historique | Voir | Annoter | Télécharger (1012 octets)
1 |
/**
|
---|---|
2 |
* Classe
|
3 |
* @see https://redmine.ryxeo.com/projects/
|
4 |
* @author 2012 Eric Seigne <eric.seigne@ryxeo.com>
|
5 |
* @see The GNU Public License (GNU/GPL) v3
|
6 |
*
|
7 |
*
|
8 |
*
|
9 |
* This program is free software; you can redistribute it and/or modify
|
10 |
* it under the terms of the GNU General Public License as published by
|
11 |
* the Free Software Foundation; either version 3 of the License, or
|
12 |
* (at your option) any later version.
|
13 |
*
|
14 |
* This program is distributed in the hope that it will be useful, but
|
15 |
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
16 |
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
17 |
* for more details.
|
18 |
*
|
19 |
* You should have received a copy of the GNU General Public License along
|
20 |
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
21 |
*/
|
22 |
|
23 |
|
24 |
#include <QtGui/QApplication> |
25 |
#include "original.h" |
26 |
|
27 |
int main(int argc, char *argv[]) |
28 |
{ |
29 |
QApplication a(argc, argv); |
30 |
original w; |
31 |
w.show(); |
32 |
|
33 |
return a.exec();
|
34 |
} |