Exiv2
sigmamn_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  */
29 #ifndef SIGMAMN_INT_HPP_
30 #define SIGMAMN_INT_HPP_
31 
32 // *****************************************************************************
33 // included header files
34 #include "tags.hpp"
35 #include "types.hpp"
36 
37 // + standard includes
38 #include <string>
39 #include <iosfwd>
40 #include <memory>
41 
42 // *****************************************************************************
43 // namespace extensions
44 namespace Exiv2 {
45  namespace Internal {
46 
47 // *****************************************************************************
48 // class definitions
49 
52  public:
54  static const TagInfo* tagList();
55 
57 
58  static std::ostream& printStripLabel(std::ostream& os, const Value& value, const ExifData*);
61  static std::ostream& print0x0008(std::ostream& os, const Value& value, const ExifData*);
63  static std::ostream& print0x0009(std::ostream& os, const Value& value, const ExifData*);
65 
66  private:
68  static const TagInfo tagInfo_[];
69 
70  }; // class SigmaMakerNote
71 
72 }} // namespace Internal, Exiv2
73 
74 #endif // #ifndef SIGMAMN_INT_HPP_
static std::ostream & print0x0009(std::ostream &os, const Value &value, const ExifData *)
Print metering mode.
Definition: sigmamn_int.cpp:157
A container for Exif data. This is a top-level class of the Exiv2 library. The container holds Exifda...
Definition: exif.hpp:434
Type definitions for Exiv2 and related functionality.
Exif tag and type information.
static const TagInfo * tagList()
Return read-only list of built-in Sigma tags.
Definition: sigmamn_int.cpp:125
static std::ostream & print0x0008(std::ostream &os, const Value &value, const ExifData *)
Print exposure mode.
Definition: sigmamn_int.cpp:143
static std::ostream & printStripLabel(std::ostream &os, const Value &value, const ExifData *)
Strip the label from the value and print the remainder.
Definition: sigmamn_int.cpp:130
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
MakerNote for Sigma (Foveon) cameras.
Definition: sigmamn_int.hpp:51