mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-04 19:55:32 +00:00
LibPDF: Move inline function definition
This breaks the dependency cycle between Parser and Document.
This commit is contained in:
committed by
Ali Mohammad Pur
parent
edc0cd29f8
commit
da170997d5
@@ -39,6 +39,11 @@ Parser::Parser(ReadonlyBytes const& bytes)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Parser::set_document(RefPtr<Document> const& document)
|
||||||
|
{
|
||||||
|
m_document = document;
|
||||||
|
}
|
||||||
|
|
||||||
bool Parser::initialize()
|
bool Parser::initialize()
|
||||||
{
|
{
|
||||||
if (!parse_header())
|
if (!parse_header())
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ public:
|
|||||||
Parser(Badge<Document>, ReadonlyBytes const&);
|
Parser(Badge<Document>, ReadonlyBytes const&);
|
||||||
|
|
||||||
[[nodiscard]] ALWAYS_INLINE RefPtr<DictObject> const& trailer() const { return m_trailer; }
|
[[nodiscard]] ALWAYS_INLINE RefPtr<DictObject> const& trailer() const { return m_trailer; }
|
||||||
void set_document(RefPtr<Document> const& document) { m_document = document; }
|
void set_document(RefPtr<Document> const&);
|
||||||
|
|
||||||
// Parses the header and initializes the xref table and trailer
|
// Parses the header and initializes the xref table and trailer
|
||||||
bool initialize();
|
bool initialize();
|
||||||
|
|||||||
Reference in New Issue
Block a user