summaryrefslogtreecommitdiff
path: root/src/core/XML.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-11 13:53:15 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-11 13:53:15 +0100
commit6940aa0e6837f9d83f9b5c5b37d4fd7747c95c67 (patch)
tree75d0944ff4fd1754f2db55b081588c71482efd71 /src/core/XML.hpp
parente6a7bbd753cba97f7bda154341d93d3f1241d2c4 (diff)
Forward declaring Rtti stuff for fewer dependencies in the Rtti.hpp header
Diffstat (limited to 'src/core/XML.hpp')
-rw-r--r--src/core/XML.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/XML.hpp b/src/core/XML.hpp
index b05d4c6..5e2542b 100644
--- a/src/core/XML.hpp
+++ b/src/core/XML.hpp
@@ -45,11 +45,16 @@
#include <ostream>
#include <vector>
-#include <core/common/Rtti.hpp>
#include <core/managed/Managed.hpp>
#include <core/managed/ManagedContainer.hpp>
namespace ousia {
+
+// Forward declarations
+class RttiType;
+template<class T>
+class Rtti;
+
namespace xml {
class Element;