diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 18:36:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-27 07:34:29 -0600 |
commit | 15246c959ae5ab4e124859a4d8981676f9eb657f (patch) | |
tree | 87813888699be2b850201725c45564c8c6423262 /extensions/source/inc/componentmodule.hxx | |
parent | 710178094dfb21b0864335b1fa1a3401e4d82959 (diff) |
Remove visual noise from extensions
Change-Id: I0397d0d0e5343b7ed192a790664b068ac6955bd3
Reviewed-on: https://gerrit.libreoffice.org/8259
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/inc/componentmodule.hxx')
-rw-r--r-- | extensions/source/inc/componentmodule.hxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/extensions/source/inc/componentmodule.hxx b/extensions/source/inc/componentmodule.hxx index b34a84fcf87a..2f2e5ad0ad5b 100644 --- a/extensions/source/inc/componentmodule.hxx +++ b/extensions/source/inc/componentmodule.hxx @@ -39,10 +39,10 @@ class ResMgr; -//......................................................................... + namespace COMPMOD_NAMESPACE { -//......................................................................... + typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > (SAL_CALL *FactoryInstantiation) ( @@ -53,9 +53,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService rtl_ModuleCount* ); - //========================================================================= + //= OModule - //========================================================================= + class OModuleImpl; class OModule { @@ -140,9 +140,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService static void ensureImpl(); }; - //========================================================================= + //= OModuleResourceClient - //========================================================================= + /** base class for objects which uses any global module-specific resources */ class OModuleResourceClient @@ -152,9 +152,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService ~OModuleResourceClient() { OModule::revokeClient(); } }; - //========================================================================= + //= ModuleRes - //========================================================================= + /** specialized ResId, using the resource manager provided by the global module */ class ModuleRes : public ::ResId @@ -163,9 +163,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService ModuleRes(sal_uInt16 _nId) : ResId(_nId, *OModule::getResManager()) { } }; - //========================================================================== + //= OMultiInstanceAutoRegistration - //========================================================================== + template <class TYPE> class OMultiInstanceAutoRegistration { @@ -205,9 +205,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService OModule::revokeComponent(TYPE::getImplementationName_Static()); } - //========================================================================== + //= OOneInstanceAutoRegistration - //========================================================================== + template <class TYPE> class OOneInstanceAutoRegistration { @@ -247,9 +247,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService OModule::revokeComponent(TYPE::getImplementationName_Static()); } -//......................................................................... + } // namespace COMPMOD_NAMESPACE -//......................................................................... + #endif // _EXTENSIONS_COMPONENT_MODULE_HXX_ |