diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-21 12:00:51 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-21 12:00:51 +0100 |
commit | b5e0b3822f08ad64d2cdacce15256222759a59e1 (patch) | |
tree | c395589fd62116215dd00e1d33d38f58446740f4 /src/core/model | |
parent | 989cc6d8064a95426962588f806bb987a6896e7f (diff) |
made Rtti a source dependency of Managed, not a header dependency
Diffstat (limited to 'src/core/model')
-rw-r--r-- | src/core/model/Document.cpp | 1 | ||||
-rw-r--r-- | src/core/model/Domain.cpp | 2 | ||||
-rw-r--r-- | src/core/model/Typesystem.cpp | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/core/model/Document.cpp b/src/core/model/Document.cpp index f6ed5de..fce9d23 100644 --- a/src/core/model/Document.cpp +++ b/src/core/model/Document.cpp @@ -19,6 +19,7 @@ #include "Document.hpp" #include <core/common/Exceptions.hpp> +#include <core/common/Rtti.hpp> namespace ousia { namespace model { diff --git a/src/core/model/Domain.cpp b/src/core/model/Domain.cpp index 4901692..77708e6 100644 --- a/src/core/model/Domain.cpp +++ b/src/core/model/Domain.cpp @@ -16,6 +16,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <core/common/Rtti.hpp> + #include "Domain.hpp" namespace ousia { diff --git a/src/core/model/Typesystem.cpp b/src/core/model/Typesystem.cpp index 1da45ae..bd3b742 100644 --- a/src/core/model/Typesystem.cpp +++ b/src/core/model/Typesystem.cpp @@ -18,6 +18,7 @@ #include "Typesystem.hpp" +#include <core/common/Rtti.hpp> #include <core/common/Utils.hpp> namespace ousia { |