diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-11 13:53:15 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-11 13:53:15 +0100 |
commit | 6940aa0e6837f9d83f9b5c5b37d4fd7747c95c67 (patch) | |
tree | 75d0944ff4fd1754f2db55b081588c71482efd71 /src/core/model/Domain.hpp | |
parent | e6a7bbd753cba97f7bda154341d93d3f1241d2c4 (diff) |
Forward declaring Rtti stuff for fewer dependencies in the Rtti.hpp header
Diffstat (limited to 'src/core/model/Domain.hpp')
-rw-r--r-- | src/core/model/Domain.hpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/model/Domain.hpp b/src/core/model/Domain.hpp index 7412ef4..c80d057 100644 --- a/src/core/model/Domain.hpp +++ b/src/core/model/Domain.hpp @@ -192,7 +192,6 @@ #ifndef _OUSIA_MODEL_DOMAIN_HPP_ #define _OUSIA_MODEL_DOMAIN_HPP_ -#include <core/common/Rtti.hpp> #include <core/managed/ManagedContainer.hpp> #include <core/RangeSet.hpp> @@ -200,8 +199,15 @@ #include "Typesystem.hpp" namespace ousia { + +// Forward declarations +class RttiType; +template<class T> +class Rtti; + namespace model { +// Forward declarations class Descriptor; class StructuredClass; class Domain; |