// ***************************************************************** -*- C++ -*- /* * Copyright (C) 2004-2010 Andreas Huggel * * This program is part of the Exiv2 distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA. */ /*! @file minoltasonyvalues.hpp @brief Wrapper for Minolta and Sony MakerNote Common Values
Email communication with caulier dot gilles at gmail dot com
@version $Rev$ @author Gilles Caulier (cgilles) caulier dot gilles at gmail dot com @date 14-Apr-10, gc: submitted */ #ifndef MINOLTASONYVALUES_HPP_ #define MINOLTASONYVALUES_HPP_ // ***************************************************************************** // included header files #include "tags.hpp" #include "types.hpp" // ***************************************************************************** // namespace extensions namespace Exiv2 { //! Print Minolta/Sony Lens id values to readable labels. EXIV2API std::ostream& printMinoltaSonyLensID(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony Color Mode values to readable labels. EXIV2API std::ostream& printMinoltaSonyColorMode(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony bool function values to readable labels. EXIV2API std::ostream& printMinoltaSonyBoolValue(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony bool inverse function values to readable labels. EXIV2API std::ostream& printMinoltaSonyBoolInverseValue(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony AF Area Mode values to readable labels. EXIV2API std::ostream& printMinoltaSonyAFAreaMode(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony Local AF Area Point values to readable labels. EXIV2API std::ostream& printMinoltaSonyLocalAFAreaPoint(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony dynamic range optimizer mode values to readable labels. EXIV2API std::ostream& printMinoltaSonyDynamicRangeOptimizerMode(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony priority setup shutter release values to readable labels. EXIV2API std::ostream& printMinoltaSonyPrioritySetupShutterRelease(std::ostream&, const Value&, const ExifData*); //! Print Minolta/Sony Quality values to readable labels. EXIV2API std::ostream& printMinoltaSonyQualityCS(std::ostream&, const Value&, const ExifData*); // TODO: Added shared methods here. } // namespace Exiv2 #endif // #ifndef MINOLTASONYVALUES_HPP_