diff --git a/include/exiv2/convert.hpp b/include/exiv2/convert.hpp
index 1f64ffdf..df7fb99f 100644
--- a/include/exiv2/convert.hpp
+++ b/include/exiv2/convert.hpp
@@ -88,15 +88,15 @@ namespace Exiv2 {
The conversions supported on Windows without iconv are:
- from | to |
- UTF-8 | UCS-2BE |
- UTF-8 | UCS-2LE |
- UCS-2BE | UTF-8 |
- UCS-2BE | UCS-2LE |
- UCS-2LE | UTF-8 |
- UCS-2LE | UCS-2BE |
- ISO-8859-1 | UTF-8 |
- ASCII | UTF-8 |
+ from | to |
+ UTF-8 | UCS-2BE |
+ UTF-8 | UCS-2LE |
+ UCS-2BE | UTF-8 |
+ UCS-2BE | UCS-2LE |
+ UCS-2LE | UTF-8 |
+ UCS-2LE | UCS-2BE |
+ ISO-8859-1 | UTF-8 |
+ ASCII | UTF-8 |
@param str The string to convert. It is updated to the converted string,
diff --git a/include/exiv2/value.hpp b/include/exiv2/value.hpp
index 831eab3f..dc7ab5d6 100644
--- a/include/exiv2/value.hpp
+++ b/include/exiv2/value.hpp
@@ -205,31 +205,31 @@ namespace Exiv2 {
The following Value subclasses are created depending on typeId:
- typeId | %Value subclass |
- invalidTypeId | %DataValue(invalidTypeId) |
- unsignedByte | %DataValue(unsignedByte) |
- asciiString | %AsciiValue |
- string | %StringValue |
- unsignedShort | %ValueType < uint16_t > |
- unsignedLong | %ValueType < uint32_t > |
- unsignedRational | %ValueType < URational > |
- invalid6 | %DataValue(invalid6) |
- undefined | %DataValue |
- signedShort | %ValueType < int16_t > |
- signedLong | %ValueType < int32_t > |
- signedRational | %ValueType < Rational > |
- tiffFloat | %ValueType < float > |
- tiffDouble | %ValueType < double > |
- tiffIfd | %ValueType < uint32_t > |
- date | %DateValue |
- time | %TimeValue |
- comment | %CommentValue |
- xmpText | %XmpTextValue |
- xmpBag | %XmpArrayValue |
- xmpSeq | %XmpArrayValue |
- xmpAlt | %XmpArrayValue |
- langAlt | %LangAltValue |
- default: | %DataValue(typeId) |
+ typeId | %Value subclass |
+ invalidTypeId | %DataValue(invalidTypeId) |
+ unsignedByte | %DataValue(unsignedByte) |
+ asciiString | %AsciiValue |
+ string | %StringValue |
+ unsignedShort | %ValueType < uint16_t > |
+ unsignedLong | %ValueType < uint32_t > |
+ unsignedRational | %ValueType < URational > |
+ invalid6 | %DataValue(invalid6) |
+ undefined | %DataValue |
+ signedShort | %ValueType < int16_t > |
+ signedLong | %ValueType < int32_t > |
+ signedRational | %ValueType < Rational > |
+ tiffFloat | %ValueType < float > |
+ tiffDouble | %ValueType < double > |
+ tiffIfd | %ValueType < uint32_t > |
+ date | %DateValue |
+ time | %TimeValue |
+ comment | %CommentValue |
+ xmpText | %XmpTextValue |
+ xmpBag | %XmpArrayValue |
+ xmpSeq | %XmpArrayValue |
+ xmpAlt | %XmpArrayValue |
+ langAlt | %LangAltValue |
+ default | %DataValue(typeId) |
@param typeId Type of the value.