summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/type/qatomictype_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/type/qatomictype_p.h')
-rw-r--r--src/xmlpatterns/type/qatomictype_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xmlpatterns/type/qatomictype_p.h b/src/xmlpatterns/type/qatomictype_p.h
index 17c0b5d..9ad8cbf 100644
--- a/src/xmlpatterns/type/qatomictype_p.h
+++ b/src/xmlpatterns/type/qatomictype_p.h
@@ -88,23 +88,23 @@ namespace QPatternist
* @returns @c true depending on if @p item is an atomic type, and that
* AtomicValue::itemType()'s SequenceType::itemType() matches this type.
*/
- virtual bool itemMatches(const Item &item) const;
+ bool itemMatches(const Item &item) const override;
/**
* @returns the result of SharedQXmlName::displayName(), of the SharedQName
* object returned from the name() function.
*/
- virtual QString displayName(const NamePool::Ptr &np) const;
+ QString displayName(const NamePool::Ptr &np) const override;
/**
* returns always @c false
*/
- virtual bool isNodeType() const;
+ bool isNodeType() const override;
/**
* returns always @c true
*/
- virtual bool isAtomicType() const;
+ bool isAtomicType() const override;
/**
* Determines whether @p other is equal to this type, or is a
@@ -113,22 +113,22 @@ namespace QPatternist
* The implementation is generic, relying on operator==()
* and xdtSuperType().
*/
- virtual bool xdtTypeMatches(const ItemType::Ptr &other) const;
+ bool xdtTypeMatches(const ItemType::Ptr &other) const override;
/**
* @returns always 'this'
*/
- virtual ItemType::Ptr atomizedType() const;
+ ItemType::Ptr atomizedType() const override;
/**
* @returns always SchemaType::SimpleTypeAtomic
*/
- virtual TypeCategory category() const;
+ TypeCategory category() const override;
/**
* @returns DerivationRestriction
*/
- virtual DerivationMethod derivationMethod() const;
+ DerivationMethod derivationMethod() const override;
virtual AtomicTypeVisitorResult::Ptr
accept(const QExplicitlySharedDataPointer<AtomicTypeVisitor> &visitor,