Proper check for rawzor libraries.
[rawtherapee-fixes.git] / rtgui / exiffiltersettings.cc
blob5a5fcd8566f75f42033700c6e6fb2e457722b2e4
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 #include <exiffiltersettings.h>
21 ExifFilterSettings::ExifFilterSettings () {
23 clear ();
26 void ExifFilterSettings::clear () {
27 fnumberFrom = 100;
28 fnumberTo = 0;
29 shutterFrom = 100;
30 shutterTo = 0;
31 isoFrom = 100000000;
32 isoTo = 0;
33 focalFrom = 1e8;
34 focalTo = 0;
35 lenses.clear ();
36 cameras.clear ();
38 filterFNumber = false;
39 filterShutter = false;
40 filterFocalLen = false;
41 filterISO = false;
42 filterCamera = false;
43 filterLens = false;