summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/ado/AIndexes.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/ado/AIndexes.hxx')
-rw-r--r--connectivity/source/inc/ado/AIndexes.hxx46
1 files changed, 23 insertions, 23 deletions
diff --git a/connectivity/source/inc/ado/AIndexes.hxx b/connectivity/source/inc/ado/AIndexes.hxx
index 85d2c30314f3..525c6052a8c1 100644
--- a/connectivity/source/inc/ado/AIndexes.hxx
+++ b/connectivity/source/inc/ado/AIndexes.hxx
@@ -24,30 +24,30 @@
namespace connectivity::ado
{
- class OConnection;
- class OIndexes : public sdbcx::OCollection
+ class OConnection;
+ class OIndexes : public sdbcx::OCollection
+ {
+ WpADOIndexes m_aCollection;
+ OConnection* m_pConnection;
+ protected:
+ virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
+ virtual void impl_refresh() override;
+ virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() 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:
+ OIndexes(::cppu::OWeakObject& _rParent,
+ ::osl::Mutex& _rMutex,
+ const ::std::vector< OUString> &_rVector,
+ const WpADOIndexes& _rCollection,
+ bool _bCase,
+ OConnection* _pConnection)
+ : sdbcx::OCollection(_rParent,_bCase,_rMutex,_rVector)
+ , m_aCollection(_rCollection)
+ , m_pConnection(_pConnection)
{
- WpADOIndexes m_aCollection;
- OConnection* m_pConnection;
- protected:
- virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
- virtual void impl_refresh() override;
- virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() 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:
- OIndexes(::cppu::OWeakObject& _rParent,
- ::osl::Mutex& _rMutex,
- const ::std::vector< OUString> &_rVector,
- const WpADOIndexes& _rCollection,
- bool _bCase,
- OConnection* _pConnection)
- : sdbcx::OCollection(_rParent,_bCase,_rMutex,_rVector)
- , m_aCollection(_rCollection)
- , m_pConnection(_pConnection)
- {
- }
- };
+ }
+ };
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */