diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
commit | 66382c62af1be515deff66d51dba7f27e5fe4937 (patch) | |
tree | cdd661a560ef1f766889d661d8c7561d18bfbabb /src/core/model/Document.cpp | |
parent | 7d788f2dce18c3ba6f11f7f032d35fef2e5fa9d4 (diff) |
Renamed RttiType to Rtti
Diffstat (limited to 'src/core/model/Document.cpp')
-rw-r--r-- | src/core/model/Document.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/model/Document.cpp b/src/core/model/Document.cpp index 5ca257b..fc9ff8d 100644 --- a/src/core/model/Document.cpp +++ b/src/core/model/Document.cpp @@ -409,21 +409,21 @@ bool Document::hasChild(Handle<StructureNode> s) const /* Type registrations */ namespace RttiTypes { -const RttiType Document = +const Rtti Document = RttiBuilder<model::Document>("Document").parent(&Node).composedOf( {&AnnotationEntity, &StructuredEntity}); -const RttiType StructureNode = +const Rtti StructureNode = RttiBuilder<model::StructureNode>("StructureNode").parent(&Node); -const RttiType StructuredEntity = +const Rtti StructuredEntity = RttiBuilder<model::StructuredEntity>("StructuredEntity") .parent(&StructureNode) .composedOf({&StructuredEntity, &DocumentPrimitive, &Anchor}); -const RttiType DocumentPrimitive = +const Rtti DocumentPrimitive = RttiBuilder<model::DocumentPrimitive>("DocumentPrimitive") .parent(&StructureNode); -const RttiType Anchor = +const Rtti Anchor = RttiBuilder<model::Anchor>("Anchor").parent(&StructureNode); -const RttiType AnnotationEntity = +const Rtti AnnotationEntity = RttiBuilder<model::AnnotationEntity>("AnnotationEntity") .parent(&Node) .composedOf({&StructuredEntity, &DocumentPrimitive, &Anchor}); |