From f4b3e060bdb9427c386df5868dd8495374bf183d Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Thu, 24 Jun 2021 00:02:09 +0000 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index a2f1e34..be0e549 100644 --- a/README.md +++ b/README.md @@ -57,3 +57,21 @@ namespace llo::iff ``` # LLOIFF Section Class + +The LLOIFF section class does not need to be inheritance based as its really just a container of symbol_base_t's. + +```cpp +namespace llo::iff +{ + class section_t + { + std::vector section_data; + std::vector symbols; + std::string section_name; + std::uint32_t section_protections; + + public: + // ... constructors... + } +} +```