diff options
Diffstat (limited to 'connectivity/source/inc/file/FStringFunctions.hxx')
-rw-r--r-- | connectivity/source/inc/file/FStringFunctions.hxx | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/connectivity/source/inc/file/FStringFunctions.hxx b/connectivity/source/inc/file/FStringFunctions.hxx index c7e6c004320f3..909c4932246ff 100644 --- a/connectivity/source/inc/file/FStringFunctions.hxx +++ b/connectivity/source/inc/file/FStringFunctions.hxx @@ -38,7 +38,7 @@ namespace connectivity class OOp_Upper : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** LCASE(str) @@ -52,7 +52,7 @@ namespace connectivity class OOp_Lower : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** ASCII(str) @@ -69,7 +69,7 @@ namespace connectivity class OOp_Ascii : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** LENGTH(str) @@ -87,7 +87,7 @@ namespace connectivity class OOp_CharLength : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** CHAR(N,...) @@ -102,7 +102,7 @@ namespace connectivity class OOp_Char : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** CONCAT(str1,str2,...) @@ -119,7 +119,7 @@ namespace connectivity class OOp_Concat : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** LOCATE(substr,str) @@ -140,7 +140,7 @@ namespace connectivity class OOp_Locate : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** SUBSTRING(str,pos) @@ -162,7 +162,7 @@ namespace connectivity class OOp_SubString : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** LTRIM(str) @@ -175,7 +175,7 @@ namespace connectivity class OOp_LTrim : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** RTRIM(str) @@ -188,7 +188,7 @@ namespace connectivity class OOp_RTrim : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** SPACE(N) @@ -201,7 +201,7 @@ namespace connectivity class OOp_Space : public OUnaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs) const SAL_OVERRIDE; }; /** REPLACE(str,from_str,to_str) @@ -214,7 +214,7 @@ namespace connectivity class OOp_Replace : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** REPEAT(str,count) @@ -227,7 +227,7 @@ namespace connectivity class OOp_Repeat : public OBinaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const SAL_OVERRIDE; }; /** INSERT(str,pos,len,newstr) @@ -240,7 +240,7 @@ namespace connectivity class OOp_Insert : public ONthOperator { protected: - virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const; + virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const SAL_OVERRIDE; }; /** LEFT(str,len) @@ -253,7 +253,7 @@ namespace connectivity class OOp_Left : public OBinaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const SAL_OVERRIDE; }; /** RIGHT(str,len) @@ -265,7 +265,7 @@ namespace connectivity class OOp_Right : public OBinaryOperator { protected: - virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const; + virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const SAL_OVERRIDE; }; } } |