Exiv2
casiomn_int.hpp
Go to the documentation of this file.
1// ***************************************************************** -*- C++ -*-
2/*
3 * Copyright (C) 2004-2021 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 */
28#ifndef CASIOMN_INT_HPP_
29#define CASIOMN_INT_HPP_
30
31// *****************************************************************************
32// included header files
33#include "tags.hpp"
34#include "types.hpp"
35
36// + standard includes
37#include <string>
38#include <iosfwd>
39
40// *****************************************************************************
41// namespace extensions
42namespace Exiv2 {
43 namespace Internal {
44
45// *****************************************************************************
46// class definitions
47
50 public:
52 static const TagInfo* tagList();
54 static std::ostream& print0x0006(std::ostream& os, const Value& value, const ExifData*);
56 static std::ostream& print0x0015(std::ostream& os, const Value& value, const ExifData*);
57
58 private:
60 static const TagInfo tagInfo_[];
61
62 }; // class CasioMakerNote
63
66 public:
68 static const TagInfo* tagList();
70 static std::ostream& print0x2001(std::ostream& os, const Value& value, const ExifData*);
72 static std::ostream& print0x2022(std::ostream& os, const Value& value, const ExifData*);
73
74 private:
76 static const TagInfo tagInfo_[];
77
78 }; // class Casio2MakerNote
79
80}} // namespace Internal, Exiv2
81
82#endif // #ifndef CasioMN_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
MakerNote for Casio2 cameras.
Definition: casiomn_int.hpp:65
static const TagInfo * tagList()
Return read-only list of built-in Casio2 tags.
Definition: casiomn_int.cpp:538
static std::ostream & print0x2022(std::ostream &os, const Value &value, const ExifData *)
Print ObjectDistance.
Definition: casiomn_int.cpp:578
static std::ostream & print0x2001(std::ostream &os, const Value &value, const ExifData *)
Print FirmwareDate.
Definition: casiomn_int.cpp:543
MakerNote for Casio cameras.
Definition: casiomn_int.hpp:49
static std::ostream & print0x0006(std::ostream &os, const Value &value, const ExifData *)
Print ObjectDistance.
Definition: casiomn_int.cpp:213
static std::ostream & print0x0015(std::ostream &os, const Value &value, const ExifData *)
Print FirmwareDate.
Definition: casiomn_int.cpp:224
static const TagInfo * tagList()
Return read-only list of built-in Casio tags.
Definition: casiomn_int.cpp:208
Common interface for all types of values used with metadata.
Definition: value.hpp:51
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:74