|
|
|
@ -72,7 +72,7 @@ namespace Exiv2 {
|
|
|
|
|
@param pValue Pointer to an %Exifdatum value.
|
|
|
|
|
@throw Error if the key cannot be parsed and converted.
|
|
|
|
|
*/
|
|
|
|
|
explicit Exifdatum(const ExifKey& key, const Value* pValue =0);
|
|
|
|
|
explicit Exifdatum(const ExifKey& key, const Value* pValue = nullptr);
|
|
|
|
|
//! Copy constructor
|
|
|
|
|
Exifdatum(const Exifdatum& rhs);
|
|
|
|
|
//! Destructor
|
|
|
|
@ -175,7 +175,7 @@ namespace Exiv2 {
|
|
|
|
|
@return Number of characters written.
|
|
|
|
|
*/
|
|
|
|
|
long copy(byte* buf, ByteOrder byteOrder) const override;
|
|
|
|
|
std::ostream& write(std::ostream& os, const ExifData* pMetadata = 0) const override;
|
|
|
|
|
std::ostream& write(std::ostream& os, const ExifData* pMetadata = nullptr) const override;
|
|
|
|
|
//! Return the type id of the value
|
|
|
|
|
TypeId typeId() const override;
|
|
|
|
|
//! Return the name of the type
|
|
|
|
@ -617,7 +617,7 @@ namespace Exiv2 {
|
|
|
|
|
const ExifData& exifData
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
encode(blob, 0, 0, byteOrder, exifData);
|
|
|
|
|
encode(blob, nullptr, 0, byteOrder, exifData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}; // class ExifParser
|
|
|
|
|