// SPDX-License-Identifier: GPL-2.0-or-later /*! @file casiomn_int.hpp @brief Casio MakerNote implemented using the following references: Casio MakerNote Information by GVsoft, Casio.pm of ExifTool by Phil Harvey, Casio Makernote Format Specification by Evan Hunter. @date 30-Oct-13, ahu: created */ #ifndef CASIOMN_INT_HPP_ #define CASIOMN_INT_HPP_ // ***************************************************************************** // included header files #include "tags.hpp" #include "types.hpp" // ***************************************************************************** // namespace extensions namespace Exiv2 { namespace Internal { // ***************************************************************************** // class definitions //! MakerNote for Casio cameras class CasioMakerNote { public: //! Return read-only list of built-in Casio tags static const TagInfo* tagList(); //! Print ObjectDistance static std::ostream& print0x0006(std::ostream& os, const Value& value, const ExifData*); //! Print FirmwareDate static std::ostream& print0x0015(std::ostream& os, const Value& value, const ExifData*); private: //! Makernote tag list static const TagInfo tagInfo_[]; }; // class CasioMakerNote //! MakerNote for Casio2 cameras class Casio2MakerNote { public: //! Return read-only list of built-in Casio2 tags static const TagInfo* tagList(); //! Print FirmwareDate static std::ostream& print0x2001(std::ostream& os, const Value& value, const ExifData*); //! Print ObjectDistance static std::ostream& print0x2022(std::ostream& os, const Value& value, const ExifData*); private: //! Makernote tag list static const TagInfo tagInfo_[]; }; // class Casio2MakerNote }} // namespace Internal, Exiv2 #endif // #ifndef CasioMN_INT_HPP_