summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/evoab2/NDriver.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/evoab2/NDriver.hxx')
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.hxx58
1 files changed, 29 insertions, 29 deletions
diff --git a/connectivity/source/drivers/evoab2/NDriver.hxx b/connectivity/source/drivers/evoab2/NDriver.hxx
index 4e4e77e8b476..e144e61d2987 100644
--- a/connectivity/source/drivers/evoab2/NDriver.hxx
+++ b/connectivity/source/drivers/evoab2/NDriver.hxx
@@ -32,45 +32,45 @@
inline constexpr OUString EVOAB_DRIVER_IMPL_NAME = u"com.sun.star.comp.sdbc.evoab.OEvoabDriver"_ustr;
namespace connectivity::evoab
- {
- class OEvoabConnection;
+{
+ class OEvoabConnection;
- typedef ::cppu::WeakComponentImplHelper< css::sdbc::XDriver,
- css::lang::XServiceInfo > ODriver_BASE;
+ typedef ::cppu::WeakComponentImplHelper< css::sdbc::XDriver,
+ css::lang::XServiceInfo > ODriver_BASE;
- class OEvoabDriver final : public ODriver_BASE
- {
- ::osl::Mutex m_aMutex;
- std::vector<unotools::WeakReference<OEvoabConnection>> m_xConnections;
- css::uno::Reference< css::uno::XComponentContext > m_xContext;
+ class OEvoabDriver final : public ODriver_BASE
+ {
+ ::osl::Mutex m_aMutex;
+ std::vector<unotools::WeakReference<OEvoabConnection>> m_xConnections;
+ css::uno::Reference< css::uno::XComponentContext > m_xContext;
- public:
- explicit OEvoabDriver(const css::uno::Reference< css::uno::XComponentContext >& );
- virtual ~OEvoabDriver() override;
+ public:
+ explicit OEvoabDriver(const css::uno::Reference< css::uno::XComponentContext >& );
+ virtual ~OEvoabDriver() override;
- // OComponentHelper
- virtual void SAL_CALL disposing() override;
+ // OComponentHelper
+ virtual void SAL_CALL disposing() override;
- // XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
+ // XServiceInfo
+ virtual OUString SAL_CALL getImplementationName( ) override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
- // XDriver
- virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL connect( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;
- virtual sal_Bool SAL_CALL acceptsURL( const OUString& url ) override;
- virtual css::uno::Sequence< css::sdbc::DriverPropertyInfo > SAL_CALL getPropertyInfo( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;
- virtual sal_Int32 SAL_CALL getMajorVersion( ) override;
- virtual sal_Int32 SAL_CALL getMinorVersion( ) override;
+ // XDriver
+ virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL connect( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;
+ virtual sal_Bool SAL_CALL acceptsURL( const OUString& url ) override;
+ virtual css::uno::Sequence< css::sdbc::DriverPropertyInfo > SAL_CALL getPropertyInfo( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;
+ virtual sal_Int32 SAL_CALL getMajorVersion( ) override;
+ virtual sal_Int32 SAL_CALL getMinorVersion( ) override;
- public:
- const css::uno::Reference< css::uno::XComponentContext >& getComponentContext( ) const { return m_xContext; }
+ public:
+ const css::uno::Reference< css::uno::XComponentContext >& getComponentContext( ) const { return m_xContext; }
- // static methods
- static bool acceptsURL_Stat( std::u16string_view url );
- };
+ // static methods
+ static bool acceptsURL_Stat( std::u16string_view url );
+ };
}