summaryrefslogtreecommitdiff
path: root/rsc/inc/rscclass.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/inc/rscclass.hxx')
-rw-r--r--rsc/inc/rscclass.hxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/rsc/inc/rscclass.hxx b/rsc/inc/rscclass.hxx
index f32ab9d1aaca..4822909c4130 100644
--- a/rsc/inc/rscclass.hxx
+++ b/rsc/inc/rscclass.hxx
@@ -59,39 +59,39 @@ public:
RscClass( Atom nId, sal_uInt32 nTypId, RscTop * pSuperCl );
~RscClass();
- virtual RSCCLASS_TYPE GetClassType() const;
+ virtual RSCCLASS_TYPE GetClassType() const SAL_OVERRIDE;
- void Pre_dtor();
+ void Pre_dtor() SAL_OVERRIDE;
ERRTYPE SetVariable( Atom nVarName, RscTop * pClass,
RSCINST * pDflt,
RSCVAR nVarType, sal_uInt32 nMask,
- Atom nDataBaseName );
- virtual void EnumVariables( void * pData, VarEnumCallbackProc );
+ Atom nDataBaseName ) SAL_OVERRIDE;
+ virtual void EnumVariables( void * pData, VarEnumCallbackProc ) SAL_OVERRIDE;
RSCINST GetVariable( const RSCINST & rInst, Atom nVarName,
const RSCINST & rInitInst,
bool nInitDflt = false,
- RscTop * pCreateClass = NULL );
- RSCINST GetCopyVar( const RSCINST & rInst, Atom nVarName );
+ RscTop * pCreateClass = NULL ) SAL_OVERRIDE;
+ RSCINST GetCopyVar( const RSCINST & rInst, Atom nVarName ) SAL_OVERRIDE;
// Gibt die Groesse der Klasse in Bytes
- sal_uInt32 Size(){ return nSize; }
+ sal_uInt32 Size() SAL_OVERRIDE { return nSize; }
- bool IsConsistent( const RSCINST & rInst );
- void SetToDefault( const RSCINST & rInst );
- bool IsDefault( const RSCINST & rInst );
- bool IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef );
- void SetDefault( const RSCINST & rData, Atom nVarId );
+ bool IsConsistent( const RSCINST & rInst ) SAL_OVERRIDE;
+ void SetToDefault( const RSCINST & rInst ) SAL_OVERRIDE;
+ bool IsDefault( const RSCINST & rInst ) SAL_OVERRIDE;
+ bool IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef ) SAL_OVERRIDE;
+ void SetDefault( const RSCINST & rData, Atom nVarId ) SAL_OVERRIDE;
using RscTop::GetDefault;
- RSCINST GetDefault( Atom nVarId );
+ RSCINST GetDefault( Atom nVarId ) SAL_OVERRIDE;
- RSCINST Create( RSCINST * pInst, const RSCINST & rDflt, bool );
- void Destroy( const RSCINST & rInst );
+ RSCINST Create( RSCINST * pInst, const RSCINST & rDflt, bool ) SAL_OVERRIDE;
+ void Destroy( const RSCINST & rInst ) SAL_OVERRIDE;
void WriteSrc( const RSCINST & rInst, FILE * fOutput,
- RscTypCont * pTC, sal_uInt32 nTab, const char * );
+ RscTypCont * pTC, sal_uInt32 nTab, const char * ) SAL_OVERRIDE;
ERRTYPE WriteInstRc( const RSCINST & rInst, RscWriteRc & aMem,
RscTypCont * pTC, sal_uInt32, bool bExtra );
ERRTYPE WriteRc( const RSCINST & rInst, RscWriteRc & aMem,
- RscTypCont * pTC, sal_uInt32, bool bExtra );
+ RscTypCont * pTC, sal_uInt32, bool bExtra ) SAL_OVERRIDE;
};
class RscSysDepend : public RscClass
@@ -102,7 +102,7 @@ public:
RscTypCont * pTC, sal_uInt32, bool bExtra,
bool bFirst = false );
ERRTYPE WriteRc( const RSCINST &, RscWriteRc & aMem,
- RscTypCont * pTC, sal_uInt32, bool bExtra );
+ RscTypCont * pTC, sal_uInt32, bool bExtra ) SAL_OVERRIDE;
};
class RscTupel : public RscClass
@@ -110,9 +110,9 @@ class RscTupel : public RscClass
public:
RscTupel( Atom nId, sal_uInt32 nTypId, RscTop * pSuper );
RSCINST GetTupelVar( const RSCINST & rInst, sal_uInt32 nPos,
- const RSCINST & rInitInst );
+ const RSCINST & rInitInst ) SAL_OVERRIDE;
void WriteSrc( const RSCINST & rInst, FILE * fOutput,
- RscTypCont * pTC, sal_uInt32 nTab, const char * );
+ RscTypCont * pTC, sal_uInt32 nTab, const char * ) SAL_OVERRIDE;
};
#endif //_RSCCLASS_HXX