#pragma once #include "test_pattern.hpp" namespace hex::test { class TestPatternStructs : public TestPattern { public: TestPatternStructs() : TestPattern("Structs") { auto testStruct = create(0x100, sizeof(s32) + sizeof(u8[0x10]), "TestStruct", "testStruct"); auto variable = create(0x100, sizeof(s32), "s32", "variable"); auto array = create(0x100 + sizeof(s32), sizeof(u8[0x10]), "u8", "array"); array->setEntries(create(0x100 + sizeof(s32), sizeof(u8), "u8", ""), 0x10); testStruct->setMembers({ variable, array }); addPattern(testStruct); } ~TestPatternStructs() override = default; [[nodiscard]] std::string getSourceCode() const override { return R"( struct TestStruct { s32 variable; u8 array[0x10]; }; TestStruct testStruct @ 0x100; )"; } }; }