aboutsummaryrefslogtreecommitdiffstats
path: root/source/elfload.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/elfload.hpp')
-rw-r--r--source/elfload.hpp15
1 files changed, 3 insertions, 12 deletions
diff --git a/source/elfload.hpp b/source/elfload.hpp
index ada35e5..84d49d3 100644
--- a/source/elfload.hpp
+++ b/source/elfload.hpp
@@ -25,18 +25,9 @@ public:
using EntryFunc = Sample *(*)(Sample *, size_t);
static EntryFunc loadFromInternalBuffer();
-
- static EntryFunc loadedElf() {
- return m_entry;
- }
-
- static unsigned char *fileBuffer() {
- return m_file_buffer.data();
- }
-
- static void unload() {
- m_entry = nullptr;
- }
+ static EntryFunc loadedElf();
+ static unsigned char *fileBuffer();
+ static void unload();
private:
static EntryFunc m_entry;