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/samsungmn_int.hpp

35 lines
962 B
C++

// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SAMSUNGMN_INT_HPP_
#define SAMSUNGMN_INT_HPP_
// *****************************************************************************
// included header files
#include "tags.hpp"
// *****************************************************************************
// namespace extensions
namespace Exiv2::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 Exiv2::Internal
#endif // #ifndef SAMSUNGMN_INT_HPP_