metavalue.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _OPENRAW_METAVALUE_H
00024 #define _OPENRAW_METAVALUE_H
00025
00026 #include <boost/variant.hpp>
00027 #include <libopenraw/types.h>
00028
00029 #include "ifdentry.h"
00030
00031 namespace OpenRaw {
00032
00033 class MetaValue
00034 {
00035 public:
00036 typedef boost::variant<std::string, uint32_t> value_t;
00037
00038 MetaValue(const MetaValue &);
00039 template <class T> MetaValue(const T &v)
00040 : m_value(v)
00041 {
00042 }
00043 explicit MetaValue(const value_t &v);
00044 explicit MetaValue(const Internals::IFDEntry::Ref & e);
00045
00046 uint32_t getInteger() const
00047 throw(Internals::BadTypeException);
00048 std::string getString() const
00049 throw(Internals::BadTypeException);
00050
00051 private:
00052 template<typename T> T get() const
00053 throw(Internals::BadTypeException);
00054
00055 value_t m_value;
00056 };
00057
00058
00059 }
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071 #endif