digiKam
imageshackitem.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2012-02-02
7  * Description : a tool to export items to ImageShack web service
8  *
9  * Copyright (C) 2012 by Dodon Victor <dodonvictor at gmail dot com>
10  * Copyright (C) 2013-2018 by Caulier Gilles <caulier dot gilles at gmail 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 DIGIKAM_IMAGE_SHACK_ITEM_H
25 #define DIGIKAM_IMAGE_SHACK_ITEM_H
26 
27 // Qt includes
28 
29 #include <QString>
30 
32 {
33 
35 {
36 
37 public:
38 
39  explicit ImageShackGallery()
40  {
41  }
42 
43  QString m_user;
44  QString m_server;
45  QString m_name;
46  QString m_title;
47  QString m_url;
48 };
49 
50 // -------------------------------------------------------------------
51 
53 {
54 
55 public:
56 
57  explicit ImageShackPhoto()
58  {
59  }
60 
61  QString m_server;
62  QString m_name;
63  QString m_bucket;
64 };
65 
66 } // namespace DigikamGenericImageShackPlugin
67 
68 #endif // DIGIKAM_IMAGE_SHACK_ITEM_H
QString m_url
Definition: imageshackitem.h:47
QString m_user
Definition: imageshackitem.h:43
QString m_name
Definition: imageshackitem.h:45
ImageShackGallery()
Definition: imageshackitem.h:39
QString m_title
Definition: imageshackitem.h:46
QString m_server
Definition: imageshackitem.h:44
QString m_server
Definition: imageshackitem.h:61
ImageShackPhoto()
Definition: imageshackitem.h:57
QString m_bucket
Definition: imageshackitem.h:63
QString m_name
Definition: imageshackitem.h:62
Definition: imageshackitem.h:32