digiKam
dbengineaction.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-06-27
7  * Description : Database engine action
8  *
9  * Copyright (C) 2009-2010 by Holger Foerster <hamsi2k at freenet dot de>
10  * Copyright (C) 2010-2022 by Gilles Caulier <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)
16  * any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_DB_ENGINE_ACTION_H
26 #define DIGIKAM_DB_ENGINE_ACTION_H
27 
28 // Qt includes
29 
30 #include <QList>
31 #include <QString>
32 
33 // Local includes
34 
35 #include "digikam_export.h"
36 
37 namespace Digikam
38 {
39 
40 class DIGIKAM_EXPORT DbEngineActionElement
41 {
42 public:
43 
45  : order(0)
46  {
47  }
48 
49  QString mode;
50  int order;
51  QString statement;
52 };
53 
54 // ---------------------------------------------------------------
55 
56 class DIGIKAM_EXPORT DbEngineAction
57 {
58 public:
59 
60  QString name;
61  QString mode;
63 };
64 
65 } // namespace Digikam
66 
67 #endif // DIGIKAM_DB_ENGINE_ACTION_H
Definition: dbengineaction.h:41
QString mode
Definition: dbengineaction.h:49
DbEngineActionElement()
Definition: dbengineaction.h:44
QString statement
Definition: dbengineaction.h:51
int order
Definition: dbengineaction.h:50
Definition: dbengineaction.h:57
QList< DbEngineActionElement > dbActionElements
Definition: dbengineaction.h:62
QString mode
Definition: dbengineaction.h:61
QString name
Definition: dbengineaction.h:60
Definition: piwigotalker.h:48
Definition: datefolderview.cpp:43