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.
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#ifndef SAMSUNGMN_INT_HPP_
|
|
|
|
#define SAMSUNGMN_INT_HPP_
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// included header files
|
|
|
|
#include "tags.hpp"
|
|
|
|
#include "types.hpp"
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// namespace extensions
|
|
|
|
namespace Exiv2 {
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// class definitions
|
|
|
|
|
|
|
|
//! MakerNote for Samsung cameras
|
|
|
|
class Samsung2MakerNote {
|
|
|
|
public:
|
|
|
|
//! Return read-only list of built-in Samsung tags
|
|
|
|
static const TagInfo* tagList();
|
|
|
|
//! Return read-only list of built-in PictureWizard tags
|
|
|
|
static const TagInfo* tagListPw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
//! Tag information
|
|
|
|
static const TagInfo tagInfo_[];
|
|
|
|
//! PictureWizard tag information
|
|
|
|
static const TagInfo tagInfoPw_[];
|
|
|
|
|
|
|
|
}; // class Samsung2MakerNote
|
|
|
|
|
|
|
|
}} // namespace Internal, Exiv2
|
|
|
|
|
|
|
|
#endif // #ifndef SAMSUNGMN_INT_HPP_
|