digiKam
iteminfoset.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 : 2009-02-15
7  * Description : queue pool info container.
8  *
9  * Copyright (C) 2009-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * 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_BQM_ITEM_INFO_SET_H
25 #define DIGIKAM_BQM_ITEM_INFO_SET_H
26 
27 // Qt includes
28 
29 #include <QList>
30 
31 // Local includes
32 
33 #include "iteminfo.h"
34 
35 namespace Digikam
36 {
37 
42 {
43 public:
44 
46  : queueId(0)
47  {
48  };
49 
50  ItemInfoSet(int id, const ItemInfo& inf)
51  : queueId(id),
52  info (inf)
53  {
54  };
55 
57  {
58  };
59 
60  int queueId;
62 };
63 
68 
69 } // namespace Digikam
70 
71 Q_DECLARE_METATYPE(Digikam::ItemInfoSet)
72 Q_DECLARE_METATYPE(Digikam::QueuePoolItemsList)
73 
74 #endif // DIGIKAM_BQM_ITEM_INFO_SET_H
Definition: iteminfoset.h:42
int queueId
Definition: iteminfoset.h:58
ItemInfoSet(int id, const ItemInfo &inf)
Definition: iteminfoset.h:50
~ItemInfoSet()
Definition: iteminfoset.h:56
ItemInfoSet()
Definition: iteminfoset.h:45
ItemInfo info
Definition: iteminfoset.h:61
Definition: iteminfo.h:78
Definition: piwigotalker.h:48
Definition: datefolderview.cpp:43
QList< ItemInfoSet > QueuePoolItemsList
Definition: iteminfoset.h:67