summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/type/qmultiitemtype_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/type/qmultiitemtype_p.h')
-rw-r--r--src/xmlpatterns/type/qmultiitemtype_p.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xmlpatterns/type/qmultiitemtype_p.h b/src/xmlpatterns/type/qmultiitemtype_p.h
index 4f301bd..88d3fd0 100644
--- a/src/xmlpatterns/type/qmultiitemtype_p.h
+++ b/src/xmlpatterns/type/qmultiitemtype_p.h
@@ -86,7 +86,7 @@ namespace QPatternist
* and <tt>xs:anyAtomicType</tt>, the display name is
* "document() | xs:integer | xs:anyAtomicType".
*/
- virtual QString displayName(const NamePool::Ptr &np) const;
+ QString displayName(const NamePool::Ptr &np) const override;
/**
* If any of the types this MultiItemType represents matches @p item, it is
@@ -94,7 +94,7 @@ namespace QPatternist
*
* @returns @c true if any of the housed ItemType instances matches @p item, otherwise @c false
*/
- virtual bool itemMatches(const Item &item) const;
+ bool itemMatches(const Item &item) const override;
/**
* If any of the types this MultiItemType represents matches @p other, it is
@@ -102,24 +102,24 @@ namespace QPatternist
*
* @returns @c true if any of the housed ItemType instances matches @p other, otherwise @c false
*/
- virtual bool xdtTypeMatches(const ItemType::Ptr &other) const;
+ bool xdtTypeMatches(const ItemType::Ptr &other) const override;
/**
* @returns @c true if any of the represented types is a node type.
*/
- virtual bool isNodeType() const;
+ bool isNodeType() const override;
/**
* @returns @c true if any of the represented types is an atomic type.
*/
- virtual bool isAtomicType() const;
+ bool isAtomicType() const override;
/**
* Determines the union type of all the represented types super types. For example,
* if the represented types are <tt>xs:integer</tt>, <tt>document()</tt>
* and <tt>xs:string</tt>, <tt>item()</tt> is returned.
*/
- virtual ItemType::Ptr xdtSuperType() const;
+ ItemType::Ptr xdtSuperType() const override;
/**
* Determines the union type of all the represented types atomized types. For example,
@@ -127,7 +127,7 @@ namespace QPatternist
* <tt>xs:anyAtomicType</tt> is returned, because that's the super type of <tt>xs:integer</tt>
* and <tt>xs:untypedAtomic</tt>.
*/
- virtual ItemType::Ptr atomizedType() const;
+ ItemType::Ptr atomizedType() const override;
private:
const ItemType::List m_types;