diff options
-rw-r--r-- | src/core/model/Document.hpp | 1 | ||||
-rw-r--r-- | src/core/model/Domain.hpp | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/core/model/Document.hpp b/src/core/model/Document.hpp index 5a293d3..7d24161 100644 --- a/src/core/model/Document.hpp +++ b/src/core/model/Document.hpp @@ -365,6 +365,7 @@ public: */ class Document : public Node { private: + //TODO: Might there be several roots? E.g. metadata? Owned<StructuredEntity> root; public: diff --git a/src/core/model/Domain.hpp b/src/core/model/Domain.hpp index e257c0d..99ac6e1 100644 --- a/src/core/model/Domain.hpp +++ b/src/core/model/Domain.hpp @@ -368,6 +368,9 @@ protected: public: const bool transparent; + // TODO: Is it possible to have root=true and cardinality other than 1? + // This also refers to the question in Document.hpp: Is it possible to have + // more than 1 root? const bool root; /** |