Proper check for rawzor libraries.
[rawtherapee-fixes.git] / rtgui / exiffiltersettings.h
blobcfcfce8b29214ecc8d42cc34a5615dc75e748ade
1 /*
2 * This file is part of RawTherapee.
4 * Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
6 * RawTherapee is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * RawTherapee is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef _EXIFFILTERSETTINGS_
20 #define _EXIFFILTERSETTINGS_
22 #include <set>
23 #include <string>
25 class ExifFilterSettings {
27 public:
28 std::set<std::string> cameras;
29 std::set<std::string> lenses;
30 double fnumberFrom;
31 double fnumberTo;
32 double shutterFrom;
33 double shutterTo;
34 double focalFrom;
35 double focalTo;
36 int isoFrom;
37 int isoTo;
39 bool filterFNumber;
40 bool filterShutter;
41 bool filterFocalLen;
42 bool filterISO;
43 bool filterCamera;
44 bool filterLens;
46 ExifFilterSettings ();
47 void clear ();
50 #endif