summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/type/qebvtype_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/type/qebvtype_p.h')
-rw-r--r--src/xmlpatterns/type/qebvtype_p.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/xmlpatterns/type/qebvtype_p.h b/src/xmlpatterns/type/qebvtype_p.h
index 7940ba9..d81e334 100644
--- a/src/xmlpatterns/type/qebvtype_p.h
+++ b/src/xmlpatterns/type/qebvtype_p.h
@@ -78,10 +78,10 @@ namespace QPatternist
/**
* @todo docs if it's an ebvable type, etc.
*/
- virtual bool itemMatches(const Item &item) const;
- virtual bool xdtTypeMatches(const ItemType::Ptr &other) const;
+ bool itemMatches(const Item &item) const override;
+ bool xdtTypeMatches(const ItemType::Ptr &other) const override;
- virtual QString displayName(const NamePool::Ptr &np) const;
+ QString displayName(const NamePool::Ptr &np) const override;
/**
* @note The semantical meaning of this type's item type can
@@ -90,7 +90,7 @@ namespace QPatternist
*
* @returns always 'this' since EBVType is also an ItemType
*/
- virtual ItemType::Ptr itemType() const;
+ ItemType::Ptr itemType() const override;
/**
* @note The semantical meaning of this type's cardinality
@@ -99,24 +99,24 @@ namespace QPatternist
*
* @returns always Cardinality::zeroOrMore()
*/
- virtual Cardinality cardinality() const;
+ Cardinality cardinality() const override;
- virtual bool isAtomicType() const;
+ bool isAtomicType() const override;
/**
* @returns always @c null
*/
- virtual ItemType::Ptr atomizedType() const;
+ ItemType::Ptr atomizedType() const override;
/**
* @returns always BuiltinTypes::item
*/
- virtual ItemType::Ptr xdtSuperType() const;
+ ItemType::Ptr xdtSuperType() const override;
/**
* @returns always @c false
*/
- virtual bool isNodeType() const;
+ bool isNodeType() const override;
protected:
friend class CommonSequenceTypes;