mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-01 17:17:55 -05:00
wip: change redirect pointer to lookup
This commit is contained in:
@ -61,3 +61,8 @@ std::vector<MemberInformation*> StructureComputations::GetUsedMembers() const
|
||||
|
||||
return members;
|
||||
}
|
||||
|
||||
bool StructureComputations::IsInTempBlock() const
|
||||
{
|
||||
return m_info->m_block != nullptr && m_info->m_block->m_type == FastFileBlockType::TEMP;
|
||||
}
|
||||
|
@ -11,6 +11,7 @@ public:
|
||||
[[nodiscard]] MemberInformation* GetDynamicMember() const;
|
||||
[[nodiscard]] bool HasNonDynamicMember() const;
|
||||
[[nodiscard]] std::vector<MemberInformation*> GetUsedMembers() const;
|
||||
[[nodiscard]] bool IsInTempBlock() const;
|
||||
|
||||
private:
|
||||
const StructureInformation* m_info;
|
||||
|
Reference in New Issue
Block a user