digiKam
importrenameparser.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 : 2010-05-22
7  * Description : a parser for the AdvancedRename utility used for importing images,
8  * excluding the database options
9  *
10  * Copyright (C) 2009-2012 by Andi Clemens <andi dot clemens 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_IMPORT_RENAME_PARSER_H
26 #define DIGIKAM_IMPORT_RENAME_PARSER_H
27 
28 // Local includes
29 
30 #include "parser.h"
31 
32 namespace Digikam
33 {
34 
35 class ImportRenameParser : public Parser
36 {
37 
38 public:
39 
40  explicit ImportRenameParser();
41 
42 private:
43 
44  // Disable
45  ImportRenameParser(const ImportRenameParser&) = delete;
46  ImportRenameParser& operator=(const ImportRenameParser&) = delete;
47 };
48 
49 } // namespace Digikam
50 
51 #endif // DIGIKAM_IMPORT_RENAME_PARSER_H
Definition: importrenameparser.h:36
ImportRenameParser()
Definition: importrenameparser.cpp:36
Definition: parser.h:45
Definition: datefolderview.cpp:43