You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exiv2/src/fujimn_int.hpp

30 lines
777 B
C++

// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef FUJIMN_INT_HPP_
#define FUJIMN_INT_HPP_
// *****************************************************************************
// included header files
#include "tags.hpp"
// *****************************************************************************
// namespace extensions
namespace Exiv2::Internal {
// *****************************************************************************
// class definitions
//! MakerNote for Fujifilm cameras
class FujiMakerNote {
public:
//! Return read-only list of built-in Fujifilm tags
static const TagInfo* tagList();
private:
//! Tag information
static const TagInfo tagInfo_[];
}; // class FujiMakerNote
} // namespace Exiv2::Internal
#endif // #ifndef FUJIMN_INT_HPP_