summaryrefslogtreecommitdiff
path: root/project2/library.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/library.h')
-rw-r--r--project2/library.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/project2/library.h b/project2/library.h
new file mode 100644
index 0000000..4dfdadd
--- /dev/null
+++ b/project2/library.h
@@ -0,0 +1,17 @@
+#ifndef LIBRARY_LOADER_H
+#define LIBRARY_LOADER_H
+
+#include "xmlObjectLoader.h"
+
+class Library : public SourceObject {
+ public:
+ Library(const xmlpp::Element * p);
+ ~Library();
+ void loadComplete(const CommonObjects*);
+ private:
+ void * handle;
+};
+extern Storage<Library>::Objects libraries;
+
+#endif
+