summaryrefslogtreecommitdiff
path: root/include/comphelper/proparrhlp.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-03-29 02:08:01 +0200
committerTor Lillqvist <tml@collabora.com>2015-03-29 02:08:32 +0200
commit9eeee5466fba5a3ff1de6d47b6341d83cf14c275 (patch)
tree954ed8aed74bcde1b1efb3c481825e336c90ae61 /include/comphelper/proparrhlp.hxx
parent5215ae54437d2cdc017e49b5b518c4e6a8fb2d50 (diff)
Bin superfluous whitespace, ASCII art and useless comments
Change-Id: Ic70fe69f407e49604b056cdcb92aa3d656e1aeaf
Diffstat (limited to 'include/comphelper/proparrhlp.hxx')
-rw-r--r--include/comphelper/proparrhlp.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/comphelper/proparrhlp.hxx b/include/comphelper/proparrhlp.hxx
index 2f7003a16f05..eb28598093aa 100644
--- a/include/comphelper/proparrhlp.hxx
+++ b/include/comphelper/proparrhlp.hxx
@@ -30,14 +30,12 @@ namespace cppu {
class IPropertyArrayHelper;
}
-//... namespace comphelper ................................................
namespace comphelper
{
template <typename TYPE> struct OPropertyArrayUsageHelperMutex
: public rtl::Static< ::osl::Mutex, OPropertyArrayUsageHelperMutex<TYPE> > {};
-
template <class TYPE>
class OPropertyArrayUsageHelper
{
@@ -78,7 +76,6 @@ protected:
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const = 0;
};
-
/** a OPropertyArrayUsageHelper which will create an OPropertyArrayAggregationHelper
*/
template <class TYPE>
@@ -114,14 +111,12 @@ protected:
virtual sal_Int32 getFirstAggregateId() const { return DEFAULT_AGGREGATE_PROPERTY_ID; }
};
-
template<class TYPE>
sal_Int32 OPropertyArrayUsageHelper< TYPE >::s_nRefCount = 0;
template<class TYPE>
::cppu::IPropertyArrayHelper* OPropertyArrayUsageHelper< TYPE >::s_pProps = NULL;
-
template <class TYPE>
OPropertyArrayUsageHelper<TYPE>::OPropertyArrayUsageHelper()
{
@@ -129,7 +124,6 @@ OPropertyArrayUsageHelper<TYPE>::OPropertyArrayUsageHelper()
++s_nRefCount;
}
-
template <class TYPE>
::cppu::IPropertyArrayHelper* OPropertyArrayUsageHelper<TYPE>::getArrayHelper()
{
@@ -146,7 +140,6 @@ template <class TYPE>
return s_pProps;
}
-
template <class TYPE> inline
::cppu::IPropertyArrayHelper* OAggregationArrayUsageHelper<TYPE>::createArrayHelper() const
{
@@ -157,11 +150,8 @@ template <class TYPE> inline
return new OPropertyArrayAggregationHelper(aProps, aAggregateProps, getInfoService(), getFirstAggregateId());
}
-
}
-//... namespace comphelper ................................................
#endif // INCLUDED_COMPHELPER_PROPARRHLP_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */