summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-23 11:37:33 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-23 10:57:45 +0000
commit5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 (patch)
treeee80e3ac5c98bd1321e5a3e79f0f93f5bb09f745 /xmlhelp
parentd43f4390e006716ca538ad92d09bd012179efd66 (diff)
remove some more (void) style function definitions/declarations
found with git grep -nP '^\s*void\s*\)' Change-Id: I1206031cf957cb6f957cae64ec5cae1280bda694 Reviewed-on: https://gerrit.libreoffice.org/26590 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/inc/tvfactory.hxx9
-rw-r--r--xmlhelp/source/cxxhelp/provider/inputstream.cxx24
-rw-r--r--xmlhelp/source/cxxhelp/provider/inputstream.hxx24
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetbase.cxx75
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetbase.hxx146
5 files changed, 93 insertions, 185 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
index 8bd8551bfffd..41c3992ffcab 100644
--- a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
+++ b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
@@ -45,18 +45,15 @@ class TVFactory: public cppu::WeakImplHelper <
// XServiceInfo
virtual OUString SAL_CALL
- getImplementationName(
- void )
+ getImplementationName()
throw( css::uno::RuntimeException, std::exception ) override;
virtual sal_Bool SAL_CALL
- supportsService(
- const OUString& ServiceName )
+ supportsService( const OUString& ServiceName )
throw(css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Sequence< OUString > SAL_CALL
- getSupportedServiceNames(
- void )
+ getSupportedServiceNames()
throw( css::uno::RuntimeException, std::exception ) override;
// XMultiServiceFactory
diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx
index ec4f7f97fdfa..23da935affac 100644
--- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx
+++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx
@@ -43,8 +43,7 @@ XInputStream_impl::~XInputStream_impl()
uno::Any SAL_CALL
-XInputStream_impl::queryInterface(
- const uno::Type& rType )
+XInputStream_impl::queryInterface( const uno::Type& rType )
throw( uno::RuntimeException, std::exception)
{
uno::Any aRet = cppu::queryInterface( rType,
@@ -55,8 +54,7 @@ XInputStream_impl::queryInterface(
void SAL_CALL
-XInputStream_impl::acquire(
- void )
+XInputStream_impl::acquire()
throw()
{
OWeakObject::acquire();
@@ -64,8 +62,7 @@ XInputStream_impl::acquire(
void SAL_CALL
-XInputStream_impl::release(
- void )
+XInputStream_impl::release()
throw()
{
OWeakObject::release();
@@ -129,8 +126,7 @@ XInputStream_impl::skipBytes(
sal_Int32 SAL_CALL
-XInputStream_impl::available(
- void )
+XInputStream_impl::available()
throw( io::NotConnectedException,
io::IOException,
uno::RuntimeException, std::exception)
@@ -140,8 +136,7 @@ XInputStream_impl::available(
void SAL_CALL
-XInputStream_impl::closeInput(
- void )
+XInputStream_impl::closeInput()
throw( io::NotConnectedException,
io::IOException,
uno::RuntimeException, std::exception )
@@ -157,8 +152,7 @@ XInputStream_impl::closeInput(
void SAL_CALL
-XInputStream_impl::seek(
- sal_Int64 location )
+XInputStream_impl::seek( sal_Int64 location )
throw( lang::IllegalArgumentException,
io::IOException,
uno::RuntimeException, std::exception )
@@ -171,8 +165,7 @@ XInputStream_impl::seek(
sal_Int64 SAL_CALL
-XInputStream_impl::getPosition(
- void )
+XInputStream_impl::getPosition()
throw( io::IOException,
uno::RuntimeException, std::exception )
{
@@ -183,8 +176,7 @@ XInputStream_impl::getPosition(
}
sal_Int64 SAL_CALL
-XInputStream_impl::getLength(
- void )
+XInputStream_impl::getLength()
throw( io::IOException,
uno::RuntimeException, std::exception )
{
diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.hxx b/xmlhelp/source/cxxhelp/provider/inputstream.hxx
index 275031c15d5d..5d2c42345dc0 100644
--- a/xmlhelp/source/cxxhelp/provider/inputstream.hxx
+++ b/xmlhelp/source/cxxhelp/provider/inputstream.hxx
@@ -54,13 +54,11 @@ namespace chelp {
throw( css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- acquire(
- void )
+ acquire()
throw() override;
virtual void SAL_CALL
- release(
- void )
+ release()
throw() override;
virtual sal_Int32 SAL_CALL
@@ -82,43 +80,37 @@ namespace chelp {
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- skipBytes(
- sal_Int32 nBytesToSkip )
+ skipBytes( sal_Int32 nBytesToSkip )
throw( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
virtual sal_Int32 SAL_CALL
- available(
- void )
+ available()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
- closeInput(
- void )
+ closeInput()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
- seek(
- sal_Int64 location )
+ seek( sal_Int64 location )
throw( css::lang::IllegalArgumentException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
virtual sal_Int64 SAL_CALL
- getPosition(
- void )
+ getPosition()
throw( css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
virtual sal_Int64 SAL_CALL
- getLength(
- void )
+ getLength()
throw( css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
index c6d2ec669391..8046a771bb4b 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
@@ -57,8 +57,7 @@ ResultSetBase::~ResultSetBase()
// XInterface
void SAL_CALL
-ResultSetBase::acquire(
- void )
+ResultSetBase::acquire()
throw()
{
OWeakObject::acquire();
@@ -66,8 +65,7 @@ ResultSetBase::acquire(
void SAL_CALL
-ResultSetBase::release(
- void )
+ResultSetBase::release()
throw()
{
OWeakObject::release();
@@ -75,8 +73,7 @@ ResultSetBase::release(
uno::Any SAL_CALL
-ResultSetBase::queryInterface(
- const uno::Type& rType )
+ResultSetBase::queryInterface( const uno::Type& rType )
throw( uno::RuntimeException, std::exception )
{
uno::Any aRet = cppu::queryInterface( rType,
@@ -147,8 +144,7 @@ ResultSetBase::dispose()
// XResultSet
sal_Bool SAL_CALL
-ResultSetBase::next(
- void )
+ResultSetBase::next()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -163,8 +159,7 @@ ResultSetBase::next(
sal_Bool SAL_CALL
-ResultSetBase::isBeforeFirst(
- void )
+ResultSetBase::isBeforeFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -173,8 +168,7 @@ ResultSetBase::isBeforeFirst(
sal_Bool SAL_CALL
-ResultSetBase::isAfterLast(
- void )
+ResultSetBase::isAfterLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -183,8 +177,7 @@ ResultSetBase::isAfterLast(
sal_Bool SAL_CALL
-ResultSetBase::isFirst(
- void )
+ResultSetBase::isFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -193,8 +186,7 @@ ResultSetBase::isFirst(
sal_Bool SAL_CALL
-ResultSetBase::isLast(
- void )
+ResultSetBase::isLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -206,8 +198,7 @@ ResultSetBase::isLast(
void SAL_CALL
-ResultSetBase::beforeFirst(
- void )
+ResultSetBase::beforeFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -216,8 +207,7 @@ ResultSetBase::beforeFirst(
void SAL_CALL
-ResultSetBase::afterLast(
- void )
+ResultSetBase::afterLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -226,8 +216,7 @@ ResultSetBase::afterLast(
sal_Bool SAL_CALL
-ResultSetBase::first(
- void )
+ResultSetBase::first()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -237,8 +226,7 @@ ResultSetBase::first(
sal_Bool SAL_CALL
-ResultSetBase::last(
- void )
+ResultSetBase::last()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -248,8 +236,7 @@ ResultSetBase::last(
sal_Int32 SAL_CALL
-ResultSetBase::getRow(
- void )
+ResultSetBase::getRow()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -279,8 +266,7 @@ sal_Bool SAL_CALL ResultSetBase::absolute( sal_Int32 row )
sal_Bool SAL_CALL
-ResultSetBase::relative(
- sal_Int32 row )
+ResultSetBase::relative( sal_Int32 row )
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -299,8 +285,7 @@ ResultSetBase::relative(
sal_Bool SAL_CALL
-ResultSetBase::previous(
- void )
+ResultSetBase::previous()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -313,8 +298,7 @@ ResultSetBase::previous(
void SAL_CALL
-ResultSetBase::refreshRow(
- void )
+ResultSetBase::refreshRow()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -322,8 +306,7 @@ ResultSetBase::refreshRow(
sal_Bool SAL_CALL
-ResultSetBase::rowUpdated(
- void )
+ResultSetBase::rowUpdated()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -331,8 +314,7 @@ ResultSetBase::rowUpdated(
}
sal_Bool SAL_CALL
-ResultSetBase::rowInserted(
- void )
+ResultSetBase::rowInserted()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -340,8 +322,7 @@ ResultSetBase::rowInserted(
}
sal_Bool SAL_CALL
-ResultSetBase::rowDeleted(
- void )
+ResultSetBase::rowDeleted()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -350,8 +331,7 @@ ResultSetBase::rowDeleted(
uno::Reference< uno::XInterface > SAL_CALL
-ResultSetBase::getStatement(
- void )
+ResultSetBase::getStatement()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -363,8 +343,7 @@ ResultSetBase::getStatement(
// XCloseable
void SAL_CALL
-ResultSetBase::close(
- void )
+ResultSetBase::close()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -372,8 +351,7 @@ ResultSetBase::close(
OUString SAL_CALL
-ResultSetBase::queryContentIdentifierString(
- void )
+ResultSetBase::queryContentIdentifierString()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -384,8 +362,7 @@ ResultSetBase::queryContentIdentifierString(
uno::Reference< ucb::XContentIdentifier > SAL_CALL
-ResultSetBase::queryContentIdentifier(
- void )
+ResultSetBase::queryContentIdentifier()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -401,8 +378,7 @@ ResultSetBase::queryContentIdentifier(
uno::Reference< ucb::XContent > SAL_CALL
-ResultSetBase::queryContent(
- void )
+ResultSetBase::queryContent()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -613,8 +589,7 @@ void SAL_CALL ResultSetBase::removeVetoableChangeListener(
// XResultSetMetaDataSupplier
uno::Reference< sdbc::XResultSetMetaData > SAL_CALL
-ResultSetBase::getMetaData(
- void )
+ResultSetBase::getMetaData()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
index fc2cf624fb91..56a591b4b8f8 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
@@ -58,29 +58,24 @@ namespace chelp {
// XInterface
virtual css::uno::Any SAL_CALL
- queryInterface(
- const css::uno::Type& aType )
+ queryInterface( const css::uno::Type& aType )
throw( css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- acquire(
- void )
+ acquire()
throw() override;
virtual void SAL_CALL
- release(
- void )
+ release()
throw() override;
// XComponent
virtual void SAL_CALL
- dispose(
- void )
+ dispose()
throw( css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
- addEventListener(
- const css::uno::Reference< css::lang::XEventListener >& xListener )
+ addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener )
throw( css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
@@ -90,8 +85,7 @@ namespace chelp {
// XRow
virtual sal_Bool SAL_CALL
- wasNull(
- void )
+ wasNull()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -103,8 +97,7 @@ namespace chelp {
}
virtual OUString SAL_CALL
- getString(
- sal_Int32 columnIndex )
+ getString( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -115,8 +108,7 @@ namespace chelp {
}
virtual sal_Bool SAL_CALL
- getBoolean(
- sal_Int32 columnIndex )
+ getBoolean( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -127,8 +119,7 @@ namespace chelp {
}
virtual sal_Int8 SAL_CALL
- getByte(
- sal_Int32 columnIndex )
+ getByte( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -139,8 +130,7 @@ namespace chelp {
}
virtual sal_Int16 SAL_CALL
- getShort(
- sal_Int32 columnIndex )
+ getShort( sal_Int32 columnIndex )
throw(
css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
@@ -152,8 +142,7 @@ namespace chelp {
}
virtual sal_Int32 SAL_CALL
- getInt(
- sal_Int32 columnIndex )
+ getInt( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -164,8 +153,7 @@ namespace chelp {
}
virtual sal_Int64 SAL_CALL
- getLong(
- sal_Int32 columnIndex )
+ getLong( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -176,8 +164,7 @@ namespace chelp {
}
virtual float SAL_CALL
- getFloat(
- sal_Int32 columnIndex )
+ getFloat( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -188,8 +175,7 @@ namespace chelp {
}
virtual double SAL_CALL
- getDouble(
- sal_Int32 columnIndex )
+ getDouble( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -200,8 +186,7 @@ namespace chelp {
}
virtual css::uno::Sequence< sal_Int8 > SAL_CALL
- getBytes(
- sal_Int32 columnIndex )
+ getBytes( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -212,8 +197,7 @@ namespace chelp {
}
virtual css::util::Date SAL_CALL
- getDate(
- sal_Int32 columnIndex )
+ getDate( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -224,8 +208,7 @@ namespace chelp {
}
virtual css::util::Time SAL_CALL
- getTime(
- sal_Int32 columnIndex )
+ getTime( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -236,8 +219,7 @@ namespace chelp {
}
virtual css::util::DateTime SAL_CALL
- getTimestamp(
- sal_Int32 columnIndex )
+ getTimestamp( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -248,8 +230,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
- getBinaryStream(
- sal_Int32 columnIndex )
+ getBinaryStream( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -260,8 +241,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
- getCharacterStream(
- sal_Int32 columnIndex )
+ getCharacterStream( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -272,9 +252,8 @@ namespace chelp {
}
virtual css::uno::Any SAL_CALL
- getObject(
- sal_Int32 columnIndex,
- const css::uno::Reference< css::container::XNameAccess >& typeMap )
+ getObject( sal_Int32 columnIndex,
+ const css::uno::Reference< css::container::XNameAccess >& typeMap )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -285,8 +264,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XRef > SAL_CALL
- getRef(
- sal_Int32 columnIndex )
+ getRef( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -297,8 +275,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XBlob > SAL_CALL
- getBlob(
- sal_Int32 columnIndex )
+ getBlob( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -309,8 +286,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XClob > SAL_CALL
- getClob(
- sal_Int32 columnIndex )
+ getClob( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -321,8 +297,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XArray > SAL_CALL
- getArray(
- sal_Int32 columnIndex )
+ getArray( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -336,143 +311,120 @@ namespace chelp {
// XResultSet
virtual sal_Bool SAL_CALL
- next(
- void )
+ next()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isBeforeFirst(
- void )
+ isBeforeFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isAfterLast(
- void )
+ isAfterLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isFirst(
- void )
+ isFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isLast(
- void )
+ isLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- beforeFirst(
- void )
+ beforeFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- afterLast(
- void )
+ afterLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- first(
- void )
+ first()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- last(
- void )
+ last()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL
- getRow(
- void )
+ getRow()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- absolute(
- sal_Int32 row )
+ absolute( sal_Int32 row )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- relative(
- sal_Int32 rows )
+ relative( sal_Int32 rows )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- previous(
- void )
+ previous()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- refreshRow(
- void )
+ refreshRow()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowUpdated(
- void )
+ rowUpdated()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowInserted(
- void )
+ rowInserted()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowDeleted(
- void )
+ rowDeleted()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL
- getStatement(
- void )
+ getStatement()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
// XCloseable
virtual void SAL_CALL
- close(
- void )
+ close()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
// XContentAccess
virtual OUString SAL_CALL
- queryContentIdentifierString(
- void )
+ queryContentIdentifierString()
throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Reference< css::ucb::XContentIdentifier > SAL_CALL
- queryContentIdentifier(
- void )
+ queryContentIdentifier()
throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Reference< css::ucb::XContent > SAL_CALL
- queryContent(
- void )
+ queryContent()
throw( css::uno::RuntimeException, std::exception ) override;
// XResultSetMetaDataSupplier
virtual css::uno::Reference< css::sdbc::XResultSetMetaData > SAL_CALL
- getMetaData(
- void )
+ getMetaData()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;