aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/elf-loader.h
diff options
context:
space:
mode:
authorTony Puccinelli2010-08-16 16:32:06 +0000
committerTony Puccinelli2010-08-16 16:32:06 +0000
commit8f7de9974f859ffa4841be015340af667e604168 (patch)
tree5868e84c710804a1cfe23c0cbe4b900da0ecad51 /backends/plugins/elf-loader.h
parent8e199cf434e5e82725957b2cb28e9fc59565b869 (diff)
downloadscummvm-rg350-8f7de9974f859ffa4841be015340af667e604168.tar.gz
scummvm-rg350-8f7de9974f859ffa4841be015340af667e604168.tar.bz2
scummvm-rg350-8f7de9974f859ffa4841be015340af667e604168.zip
Added doxygen comments for a few different plugin-related classes
svn-id: r52124
Diffstat (limited to 'backends/plugins/elf-loader.h')
-rw-r--r--backends/plugins/elf-loader.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/backends/plugins/elf-loader.h b/backends/plugins/elf-loader.h
index 4b5ec99b57..df0427e429 100644
--- a/backends/plugins/elf-loader.h
+++ b/backends/plugins/elf-loader.h
@@ -32,6 +32,13 @@
#include "common/stream.h"
#include "backends/plugins/dynamic-plugin.h"
+/**
+ * DLObject
+ *
+ * Class that most directly handles operations on a plugin file
+ * (opening it for reading, loading/unloading it in memory, finding a specific symbol in the file, etc.)
+ * Subclasses have the same functionality, but implementations specific to different processors/platforms.
+ */
class DLObject {
protected:
void *_segment, *_symtab;