Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions include/c2pa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ namespace c2pa
/// @return The number of bytes written.
/// @throws C2pa::C2paException for errors encountered by the C2PA library.
int64_t get_resource(const string &uri, std::ostream &stream);

/// @brief Get the raw C2paReader pointer.
/// @return The raw C2paReader pointer.
/// @note This is intended for internal API use and compatibility with C APIs.
C2paReader* get_api_internal_raw_reader() const { return c2pa_reader; }
};

/// @brief Signer Callback function type.
Expand Down
Loading