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... + } +} +```