summaryrefslogtreecommitdiff
path: root/src/resource-library.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resource-library.h')
-rw-r--r--src/resource-library.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/resource-library.h b/src/resource-library.h
new file mode 100644
index 0000000..f9e178b
--- /dev/null
+++ b/src/resource-library.h
@@ -0,0 +1,11 @@
+#ifndef RESOURCELIBRARY_H
+#define RESOURCELIBRARY_H
+
+class ResourceLibrary
+{
+public:
+ virtual ~ResourceLibrary() {}
+ virtual bool initialize() = 0;
+};
+
+#endif