summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/type/qanysimpletype_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/type/qanysimpletype_p.h')
-rw-r--r--src/xmlpatterns/type/qanysimpletype_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xmlpatterns/type/qanysimpletype_p.h b/src/xmlpatterns/type/qanysimpletype_p.h
index 57a5320..1943d44 100644
--- a/src/xmlpatterns/type/qanysimpletype_p.h
+++ b/src/xmlpatterns/type/qanysimpletype_p.h
@@ -73,19 +73,19 @@ namespace QPatternist
typedef QList<AnySimpleType::Ptr> List;
friend class BuiltinTypes;
- virtual ~AnySimpleType();
+ ~AnySimpleType();
- virtual QXmlName name(const NamePool::Ptr &np) const;
+ QXmlName name(const NamePool::Ptr &np) const override;
/**
* @returns always @c xs:anySimpleType
*/
- virtual QString displayName(const NamePool::Ptr &np) const;
+ QString displayName(const NamePool::Ptr &np) const override;
/**
* @returns always BuiltinTypes::xsAnyType
*/
- virtual SchemaType::Ptr wxsSuperType() const;
+ SchemaType::Ptr wxsSuperType() const override;
/**
* xs:anySimpleType is the special "simple ur-type". Therefore this function
@@ -93,7 +93,7 @@ namespace QPatternist
*
* @returns SchemaType::None
*/
- virtual TypeCategory category() const;
+ TypeCategory category() const override;
/**
* The simple ur-type is a "special restriction of the ur-type definition",
@@ -101,17 +101,17 @@ namespace QPatternist
*
* @returns DERIVATION_RESTRICTION
*/
- virtual SchemaType::DerivationMethod derivationMethod() const;
+ SchemaType::DerivationMethod derivationMethod() const override;
/**
* Always returns @c true.
*/
- virtual bool isSimpleType() const;
+ bool isSimpleType() const override;
/**
* Always returns @c false.
*/
- virtual bool isComplexType() const;
+ bool isComplexType() const override;
protected:
AnySimpleType();