summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/ado/AUsers.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/ado/AUsers.hxx')
-rw-r--r--connectivity/source/inc/ado/AUsers.hxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/connectivity/source/inc/ado/AUsers.hxx b/connectivity/source/inc/ado/AUsers.hxx
index 3f715f8b7209..b88776206321 100644
--- a/connectivity/source/inc/ado/AUsers.hxx
+++ b/connectivity/source/inc/ado/AUsers.hxx
@@ -26,28 +26,28 @@
namespace connectivity::ado
{
- class OUsers : public sdbcx::OCollection
+ class OUsers : public sdbcx::OCollection
+ {
+ WpADOUsers m_aCollection;
+ OCatalog* m_pCatalog;
+ public:
+ virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
+ virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
+ virtual void impl_refresh() override;
+ virtual css::uno::Reference< css::beans::XPropertySet > appendObject( const OUString& _rForName, const css::uno::Reference< css::beans::XPropertySet >& descriptor ) override;
+ virtual void dropObject(sal_Int32 _nPos,const OUString& _sElementName) override;
+ public:
+ OUsers( OCatalog* _pParent,
+ ::osl::Mutex& _rMutex,
+ const ::std::vector< OUString> &_rVector,
+ const WpADOUsers& _rCollection,
+ bool _bCase)
+ :sdbcx::OCollection(*_pParent,_bCase,_rMutex,_rVector)
+ ,m_aCollection(_rCollection)
+ ,m_pCatalog(_pParent)
{
- WpADOUsers m_aCollection;
- OCatalog* m_pCatalog;
- public:
- virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
- virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
- virtual void impl_refresh() override;
- virtual css::uno::Reference< css::beans::XPropertySet > appendObject( const OUString& _rForName, const css::uno::Reference< css::beans::XPropertySet >& descriptor ) override;
- virtual void dropObject(sal_Int32 _nPos,const OUString& _sElementName) override;
- public:
- OUsers( OCatalog* _pParent,
- ::osl::Mutex& _rMutex,
- const ::std::vector< OUString> &_rVector,
- const WpADOUsers& _rCollection,
- bool _bCase)
- :sdbcx::OCollection(*_pParent,_bCase,_rMutex,_rVector)
- ,m_aCollection(_rCollection)
- ,m_pCatalog(_pParent)
- {
- }
- };
+ }
+ };
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */