Skip to content

Commit

Permalink
Recover some documentation strings
Browse files Browse the repository at this point in the history
  • Loading branch information
piponazo committed Feb 4, 2022
1 parent 3ed696a commit a425018
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions include/exiv2/bmpimage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,24 +79,24 @@ namespace Exiv2 {
//! @name Manipulators
//@{
void readMetadata() override;
/*!
@brief Todo: Write metadata back to the image. This method is not
yet(?) implemented. Calling it will throw an Error(kerWritingImageFormatUnsupported).
*/

/// @throws Error(kerWritingImageFormatUnsupported).
void writeMetadata() override;

/// @throws Error(kerInvalidSettingForImage)
void setExifData(const ExifData& exifData) override;

/// @throws Error(kerInvalidSettingForImage)
void setIptcData(const IptcData& iptcData) override;

/// @throws Error(kerInvalidSettingForImage)
void setComment(const std::string& comment) override;
//@}

//! @name Accessors
//@{
std::string mimeType() const override;
//@}

}; // class BmpImage

// *****************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/bmpimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ namespace Exiv2

void BmpImage::writeMetadata()
{
// Todo: implement me!
/// \todo implement me!
throw(Error(kerWritingImageFormatUnsupported, "BMP"));
}

Expand Down

0 comments on commit a425018

Please sign in to comment.