Blame src/fujimn_int.hpp

Packit 01d647
// ***************************************************************** -*- C++ -*-
Packit 01d647
/*
Packit 01d647
 * Copyright (C) 2004-2018 Exiv2 authors
Packit 01d647
 * This program is part of the Exiv2 distribution.
Packit 01d647
 *
Packit 01d647
 * This program is free software; you can redistribute it and/or
Packit 01d647
 * modify it under the terms of the GNU General Public License
Packit 01d647
 * as published by the Free Software Foundation; either version 2
Packit 01d647
 * of the License, or (at your option) any later version.
Packit 01d647
 *
Packit 01d647
 * This program is distributed in the hope that it will be useful,
Packit 01d647
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 01d647
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 01d647
 * GNU General Public License for more details.
Packit 01d647
 *
Packit 01d647
 * You should have received a copy of the GNU General Public License
Packit 01d647
 * along with this program; if not, write to the Free Software
Packit 01d647
 * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
Packit 01d647
 */
Packit 01d647
/*!
Packit 01d647
  @file    fujimn_int.hpp
Packit 01d647
  @brief   Fujifilm MakerNote implemented according to the specification
Packit 01d647
           in Appendix 4: Makernote of Fujifilm of the document
Packit 01d647
           
Packit 01d647
           Exif file format by TsuruZoh Tachibanaya
Packit 01d647
           Fuji Makernote list by Phil Harvey
Packit 01d647
  @author  Andreas Huggel (ahu)
Packit 01d647
           ahuggel@gmx.net
Packit 01d647
  @author  Gilles Caulier (gc)
Packit 01d647
           caulier dot gilles at gmail dot com
Packit 01d647
  @date    11-Feb-04, ahu: created
Packit 01d647
 */
Packit 01d647
#ifndef FUJIMN_INT_HPP_
Packit 01d647
#define FUJIMN_INT_HPP_
Packit 01d647
Packit 01d647
// *****************************************************************************
Packit 01d647
// included header files
Packit 01d647
#include "tags.hpp"
Packit 01d647
#include "types.hpp"
Packit 01d647
Packit 01d647
// *****************************************************************************
Packit 01d647
// namespace extensions
Packit 01d647
namespace Exiv2 {
Packit 01d647
    namespace Internal {
Packit 01d647
Packit 01d647
// *****************************************************************************
Packit 01d647
// class definitions
Packit 01d647
Packit 01d647
    //! MakerNote for Fujifilm cameras
Packit 01d647
    class FujiMakerNote {
Packit 01d647
    public:
Packit 01d647
        //! Return read-only list of built-in Fujifilm tags
Packit 01d647
        static const TagInfo* tagList();
Packit 01d647
Packit 01d647
    private:
Packit 01d647
        //! Tag information
Packit 01d647
        static const TagInfo tagInfo_[];
Packit 01d647
Packit 01d647
    }; // class FujiMakerNote
Packit 01d647
Packit 01d647
}}                                      // namespace Internal, Exiv2
Packit 01d647
Packit 01d647
#endif                                  // #ifndef FUJIMN_INT_HPP_