From 51035035acab75a3f12c46a0b87b1890d9641eb8 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Wed, 23 Jun 2021 23:53:49 +0000 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 625dfd3..a2f1e34 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,6 @@ namespace llo::iff symbol_base_t(); symbol_base_t( const std::string& name, - hash_t hash, rva_t rva_data ); @@ -43,4 +42,18 @@ namespace llo::iff virtual hash_t get_hash() const; // ... fancy c++ stuff here like override's and such }; + + // inherit symbol_base_t for symbol_function_t maybe... + class symbol_function_t : public symbol_base_t + { + public: + symbol_function_t(); + symbol_function_t( + const std::string& name, + rva_t rva_data + ); + } } +``` + +# LLOIFF Section Class