digiKam
Loading...
Searching...
No Matches
filepropertiesoption.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-08-08
7 * Description : an option to provide file information to the parser
8 *
9 * SPDX-FileCopyrightText: 2009-2012 by Andi Clemens <andi dot clemens at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QObject>
20#include <QString>
21
22// Local includes
23
24#include "option.h"
25
26namespace Digikam
27{
28
30{
31 Q_OBJECT
32
33public:
34
36 ~FilePropertiesOption() override = default;
37
38protected:
39
40 QString parseOperation(ParseSettings& settings,
41 const QRegularExpressionMatch& match) override;
42
43private:
44
45 // Disable
46 FilePropertiesOption(QObject*) = delete;
48 FilePropertiesOption& operator=(const FilePropertiesOption&) = delete;
49};
50
51} // namespace Digikam
Definition filepropertiesoption.h:30
QString parseOperation(ParseSettings &settings, const QRegularExpressionMatch &match) override
Definition filepropertiesoption.cpp:71
~FilePropertiesOption() override=default
FilePropertiesOption()
Definition filepropertiesoption.cpp:39
Definition option.h:25
Definition parsesettings.h:33
Definition datefolderview.cpp:34