diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:22:14 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:22:14 +0100 |
commit | a30e627ffccf36384689295ce54af32e38ef5ef8 (patch) | |
tree | ffd03045f2f292da9d9f2d684d166093abaf7a21 /src/core/model/Document.hpp | |
parent | 1ebaaf08c0bc7de704a3c2a423f572c54c4a069b (diff) |
Droped Rtti<T> class, using RttiType instead
Diffstat (limited to 'src/core/model/Document.hpp')
-rw-r--r-- | src/core/model/Document.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/model/Document.hpp b/src/core/model/Document.hpp index 9410d17..d9729c3 100644 --- a/src/core/model/Document.hpp +++ b/src/core/model/Document.hpp @@ -641,13 +641,13 @@ public: } namespace RttiTypes { -extern const Rtti<model::Document> Document; -extern const Rtti<model::DocumentEntity> DocumentEntity; -extern const Rtti<model::AnnotationEntity> AnnotationEntity; -extern const Rtti<model::StructureNode> StructureNode; -extern const Rtti<model::StructuredEntity> StructuredEntity; -extern const Rtti<model::DocumentPrimitive> DocumentPrimitive; -extern const Rtti<model::Anchor> Anchor; +extern const RttiType Document; +extern const RttiType DocumentEntity; +extern const RttiType AnnotationEntity; +extern const RttiType StructureNode; +extern const RttiType StructuredEntity; +extern const RttiType DocumentPrimitive; +extern const RttiType Anchor; } } |