ryxeo-webphotoalbum-git / original.h @ ef177d24
Historique | Voir | Annoter | Télécharger (1,22 ko)
1 | ef177d24 | Eric Seigne | /**
|
---|---|---|---|
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 | #ifndef ORIGINAL_H
|
||
25 | #define ORIGINAL_H
|
||
26 | |||
27 | #include <QDir> |
||
28 | #include <QDebug> |
||
29 | #include <QMainWindow> |
||
30 | #include <exiv2/image.hpp> |
||
31 | #include <exiv2/exif.hpp> |
||
32 | |||
33 | namespace Ui { |
||
34 | class original; |
||
35 | } |
||
36 | |||
37 | class original : public QMainWindow |
||
38 | { |
||
39 | Q_OBJECT |
||
40 | |||
41 | public: |
||
42 | explicit original(QWidget *parent = 0);
|
||
43 | ~original(); |
||
44 | |||
45 | private slots: |
||
46 | void on_btnExport_clicked();
|
||
47 | |||
48 | private:
|
||
49 | Ui::original *ui; |
||
50 | }; |
||
51 | |||
52 | #endif // ORIGINAL_H |