source: extensions/digikam_export/piwigoexport/albumdlg.h @ 4770

Last change on this file since 4770 was 4770, checked in by fcoiffie, 14 years ago

Premiere version du plugin Digikam piwigoexport

  • Connexion
  • Liste des categories
  • Upload des photos
File size: 1.3 KB
Line 
1/* ============================================================
2 *
3 * This file is a part of kipi-plugins project
4 * http://www.kipi-plugins.org
5 *
6 * Date        : 2010-01-07
7 * Description : a plugin to export to a remote Piwigo server.
8 *
9 * Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com>
10 * Copyright (C) 2010 by Frederic Coiffier <frederic dot coiffier at free dot com>
11 *
12 * This program is free software; you can redistribute it
13 * and/or modify it under the terms of the GNU General
14 * Public License as published by the Free Software Foundation;
15 * either version 2, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 * GNU General Public License for more details.
21 *
22 * ============================================================ */
23
24#ifndef ALBUMDLG_H
25#define ALBUMDLG_H
26
27#include "ui_piwigoalbumwidget.h"
28
29// Qt includes.
30
31#include <QDialog>
32#include <QWidget>
33
34namespace KIPIPiwigoExportPlugin
35{
36
37class AlbumDlg : public QDialog , public Ui::PiwigoAlbumWidget
38{
39    Q_OBJECT
40
41public:
42
43    AlbumDlg(QWidget *parent = 0);
44    ~AlbumDlg();
45};
46
47} // namespace KIPIPiwigoExportPlugin
48
49#endif // ALBUMDLG_H
Note: See TracBrowser for help on using the repository browser.