summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/ado/AViews.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/ado/AViews.hxx')
-rw-r--r--connectivity/source/inc/ado/AViews.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/connectivity/source/inc/ado/AViews.hxx b/connectivity/source/inc/ado/AViews.hxx
index 8709bdc9fae8..5d3e322f4a89 100644
--- a/connectivity/source/inc/ado/AViews.hxx
+++ b/connectivity/source/inc/ado/AViews.hxx
@@ -27,25 +27,25 @@
namespace connectivity::ado
{
- class OViews : public sdbcx::OCollection
+ class OViews : public sdbcx::OCollection
+ {
+ WpADOViews m_aCollection;
+ OCatalog* m_pCatalog;
+ 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:
+ OViews(OCatalog* _pParent, ::osl::Mutex& _rMutex,
+ const ::std::vector< OUString> &_rVector,
+ WpADOViews const & _rCollection,bool _bCase) : sdbcx::OCollection(*_pParent,_bCase,_rMutex,_rVector)
+ ,m_aCollection(_rCollection)
+ ,m_pCatalog(_pParent)
{
- WpADOViews m_aCollection;
- OCatalog* m_pCatalog;
- 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:
- OViews(OCatalog* _pParent, ::osl::Mutex& _rMutex,
- const ::std::vector< OUString> &_rVector,
- WpADOViews const & _rCollection,bool _bCase) : sdbcx::OCollection(*_pParent,_bCase,_rMutex,_rVector)
- ,m_aCollection(_rCollection)
- ,m_pCatalog(_pParent)
- {
- }
- };
+ }
+ };
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */