summaryrefslogtreecommitdiff
path: root/project2/common
diff options
context:
space:
mode:
Diffstat (limited to 'project2/common')
-rw-r--r--project2/common/options.h1
-rw-r--r--project2/common/plugable.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/project2/common/options.h b/project2/common/options.h
index c2416ef..cee95d4 100644
--- a/project2/common/options.h
+++ b/project2/common/options.h
@@ -9,6 +9,7 @@
#include <boost/function.hpp>
#include <boost/utility/enable_if.hpp>
#include "variableType.h"
+#include "plugable.h"
class Options {
public:
diff --git a/project2/common/plugable.h b/project2/common/plugable.h
index 74a2019..4b46f8c 100644
--- a/project2/common/plugable.h
+++ b/project2/common/plugable.h
@@ -8,6 +8,8 @@
#include <boost/foreach.hpp>
#include "exceptions.h"
+class ComponentLoader;
+
class Plugable {
public:
template <class CT>