1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

LibPDF: Extract a Document::read_filters() method

No behavior change.
This commit is contained in:
Nico Weber 2023-07-23 22:45:39 -04:00 committed by Tim Flynn
parent 9f4feb7315
commit 532230c0e4
3 changed files with 20 additions and 11 deletions

View file

@ -146,6 +146,8 @@ public:
PDFErrorOr<Optional<InfoDict>> info_dict();
PDFErrorOr<Vector<DeprecatedFlyString>> read_filters(NonnullRefPtr<DictObject>);
private:
explicit Document(NonnullRefPtr<DocumentParser> const& parser);