2021-09-18 18:15:14 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Matthew Olsson <mattco@serenityos.org>
|
|
|
|
* Copyright (c) 2021, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
namespace PDF {
|
|
|
|
|
|
|
|
class Reference {
|
|
|
|
public:
|
|
|
|
Reference(u32 index, u32 generation_index)
|
2023-07-10 18:02:36 +03:00
|
|
|
: m_ref_index(index)
|
|
|
|
, m_generation_index(generation_index)
|
2021-09-18 18:15:14 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] ALWAYS_INLINE u32 as_ref_index() const
|
|
|
|
{
|
2023-07-10 18:02:36 +03:00
|
|
|
return m_ref_index;
|
2021-09-18 18:15:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] ALWAYS_INLINE u32 as_ref_generation_index() const
|
|
|
|
{
|
2023-07-10 18:02:36 +03:00
|
|
|
return m_generation_index;
|
2021-09-18 18:15:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2023-07-10 18:02:36 +03:00
|
|
|
u32 m_ref_index;
|
|
|
|
u32 m_generation_index;
|
2021-09-18 18:15:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|