Exiv2
sonymn_int.hpp
Go to the documentation of this file.
1 // ***************************************************************** -*- C++ -*-
2 /*
3  * Copyright (C) 2004-2018 Exiv2 authors
4  * This program is part of the Exiv2 distribution.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
19  */
32 #ifndef SONYMN_INT_HPP_
33 #define SONYMN_INT_HPP_
34 
35 // *****************************************************************************
36 // included header files
37 #include "tags.hpp"
38 #include "types.hpp"
39 
40 // + standard includes
41 #include <string>
42 #include <iosfwd>
43 
44 // *****************************************************************************
45 // namespace extensions
46 namespace Exiv2 {
47  namespace Internal {
48 
49 // *****************************************************************************
50 // class definitions
51 
53  class SonyMakerNote {
54  public:
56  static const TagInfo* tagList();
58  static const TagInfo* tagListCs();
60  static const TagInfo* tagListCs2();
61 
63 
64  static std::ostream& print0xb000(std::ostream&, const Value&, const ExifData*);
67  static std::ostream& printImageSize(std::ostream&, const Value&, const ExifData*);
68 
69  private:
71  static const TagInfo tagInfo_[];
72  static const TagInfo tagInfoCs_[];
73  static const TagInfo tagInfoCs2_[];
74 
75  }; // class SonyMakerNote
76 
77 }} // namespace Internal, Exiv2
78 
79 #endif // #ifndef SONYMN_INT_HPP_
A container for Exif data. This is a top-level class of the Exiv2 library. The container holds Exifda...
Definition: exif.hpp:434
static const TagInfo * tagListCs2()
Return read-only list of built-in Sony Standard Camera Settings version 2 tags.
Definition: sonymn_int.cpp:793
static const TagInfo * tagListCs()
Return read-only list of built-in Sony Standard Camera Settings tags.
Definition: sonymn_int.cpp:729
static std::ostream & printImageSize(std::ostream &, const Value &, const ExifData *)
Print Full and Preview Image size.
Definition: sonymn_int.cpp:319
Type definitions for Exiv2 and related functionality.
Exif tag and type information.
static const TagInfo * tagList()
Return read-only list of built-in Sony tags.
Definition: sonymn_int.cpp:495
Common interface for all types of values used with metadata.
Definition: value.hpp:60
Provides classes and functions to encode and decode Exif and Iptc data. The libexiv2 API consists of ...
Definition: asfvideo.hpp:36
Tag information.
Definition: tags.hpp:82
static std::ostream & print0xb000(std::ostream &, const Value &, const ExifData *)
Print Sony Camera Model.
Definition: sonymn_int.cpp:296
MakerNote for Sony cameras.
Definition: sonymn_int.hpp:53