tdf#74608 Constructor function for SequenceOutputStreamService
Change-Id: I0f162bd0ec61262a182ebab8cea1cfe27419a54e Reviewed-on: https://gerrit.libreoffice.org/23610 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
committed by
Stephan Bergmann
parent
0452db13db
commit
0ea748be9c
@@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
void createRegistryInfo_Map();
|
void createRegistryInfo_Map();
|
||||||
void createRegistryInfo_OPropertyBag();
|
void createRegistryInfo_OPropertyBag();
|
||||||
void createRegistryInfo_SequenceOutputStream();
|
|
||||||
void createRegistryInfo_UNOMemoryStream();
|
void createRegistryInfo_UNOMemoryStream();
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -35,7 +35,6 @@ namespace comphelper { namespace module
|
|||||||
doInitialize()
|
doInitialize()
|
||||||
{
|
{
|
||||||
createRegistryInfo_OPropertyBag();
|
createRegistryInfo_OPropertyBag();
|
||||||
createRegistryInfo_SequenceOutputStream();
|
|
||||||
createRegistryInfo_UNOMemoryStream();
|
createRegistryInfo_UNOMemoryStream();
|
||||||
createRegistryInfo_Map();
|
createRegistryInfo_Map();
|
||||||
}
|
}
|
||||||
|
@@ -50,11 +50,6 @@ public:
|
|||||||
virtual sal_Bool SAL_CALL supportsService( const OUString & ServiceName ) throw ( uno::RuntimeException, std::exception ) override;
|
virtual sal_Bool SAL_CALL supportsService( const OUString & ServiceName ) throw ( uno::RuntimeException, std::exception ) override;
|
||||||
virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw ( uno::RuntimeException, std::exception ) override;
|
virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw ( uno::RuntimeException, std::exception ) override;
|
||||||
|
|
||||||
// XServiceInfo - static versions (used for component registration)
|
|
||||||
static OUString SAL_CALL getImplementationName_static();
|
|
||||||
static uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static();
|
|
||||||
static uno::Reference< uno::XInterface > SAL_CALL Create( const uno::Reference< uno::XComponentContext >& );
|
|
||||||
|
|
||||||
// css::io::XOutputStream:
|
// css::io::XOutputStream:
|
||||||
virtual void SAL_CALL writeBytes( const uno::Sequence< ::sal_Int8 > & aData ) throw ( io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException, std::exception ) override;
|
virtual void SAL_CALL writeBytes( const uno::Sequence< ::sal_Int8 > & aData ) throw ( io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException, std::exception ) override;
|
||||||
virtual void SAL_CALL flush() throw ( uno::RuntimeException, io::NotConnectedException, io::BufferSizeExceededException, io::IOException, std::exception ) override;
|
virtual void SAL_CALL flush() throw ( uno::RuntimeException, io::NotConnectedException, io::BufferSizeExceededException, io::IOException, std::exception ) override;
|
||||||
@@ -78,11 +73,6 @@ SequenceOutputStreamService::SequenceOutputStreamService()
|
|||||||
|
|
||||||
// com.sun.star.uno.XServiceInfo:
|
// com.sun.star.uno.XServiceInfo:
|
||||||
OUString SAL_CALL SequenceOutputStreamService::getImplementationName() throw ( uno::RuntimeException, std::exception )
|
OUString SAL_CALL SequenceOutputStreamService::getImplementationName() throw ( uno::RuntimeException, std::exception )
|
||||||
{
|
|
||||||
return getImplementationName_static();
|
|
||||||
}
|
|
||||||
|
|
||||||
OUString SAL_CALL SequenceOutputStreamService::getImplementationName_static()
|
|
||||||
{
|
{
|
||||||
return OUString("com.sun.star.comp.SequenceOutputStreamService");
|
return OUString("com.sun.star.comp.SequenceOutputStreamService");
|
||||||
}
|
}
|
||||||
@@ -93,22 +83,11 @@ sal_Bool SAL_CALL SequenceOutputStreamService::supportsService( OUString const &
|
|||||||
}
|
}
|
||||||
|
|
||||||
uno::Sequence< OUString > SAL_CALL SequenceOutputStreamService::getSupportedServiceNames() throw ( uno::RuntimeException, std::exception )
|
uno::Sequence< OUString > SAL_CALL SequenceOutputStreamService::getSupportedServiceNames() throw ( uno::RuntimeException, std::exception )
|
||||||
{
|
|
||||||
return getSupportedServiceNames_static();
|
|
||||||
}
|
|
||||||
|
|
||||||
uno::Sequence< OUString > SAL_CALL SequenceOutputStreamService::getSupportedServiceNames_static()
|
|
||||||
{
|
{
|
||||||
uno::Sequence<OUString> s { "com.sun.star.io.SequenceOutputStream" };
|
uno::Sequence<OUString> s { "com.sun.star.io.SequenceOutputStream" };
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
uno::Reference< uno::XInterface > SAL_CALL SequenceOutputStreamService::Create(
|
|
||||||
SAL_UNUSED_PARAMETER const uno::Reference< uno::XComponentContext >& )
|
|
||||||
{
|
|
||||||
return static_cast< ::cppu::OWeakObject * >( new SequenceOutputStreamService());
|
|
||||||
}
|
|
||||||
|
|
||||||
// css::io::XOutputStream:
|
// css::io::XOutputStream:
|
||||||
void SAL_CALL SequenceOutputStreamService::writeBytes( const uno::Sequence< ::sal_Int8 > & aData ) throw ( uno::RuntimeException, io::NotConnectedException, io::BufferSizeExceededException, io::IOException, std::exception )
|
void SAL_CALL SequenceOutputStreamService::writeBytes( const uno::Sequence< ::sal_Int8 > & aData ) throw ( uno::RuntimeException, io::NotConnectedException, io::BufferSizeExceededException, io::IOException, std::exception )
|
||||||
{
|
{
|
||||||
@@ -152,9 +131,12 @@ uno::Sequence< ::sal_Int8 > SAL_CALL SequenceOutputStreamService::getWrittenByte
|
|||||||
|
|
||||||
} // anonymous namespace
|
} // anonymous namespace
|
||||||
|
|
||||||
void createRegistryInfo_SequenceOutputStream()
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
|
||||||
|
com_sun_star_comp_SequenceOutputStreamService(
|
||||||
|
css::uno::XComponentContext *,
|
||||||
|
css::uno::Sequence<css::uno::Any> const &)
|
||||||
{
|
{
|
||||||
static ::comphelper::module::OAutoRegistration< SequenceOutputStreamService > aAutoRegistration;
|
return cppu::acquire(new SequenceOutputStreamService());
|
||||||
}
|
}
|
||||||
|
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
@@ -38,7 +38,8 @@
|
|||||||
constructor="com_sun_star_comp_SequenceInputStreamService">
|
constructor="com_sun_star_comp_SequenceInputStreamService">
|
||||||
<service name="com.sun.star.io.SequenceInputStream"/>
|
<service name="com.sun.star.io.SequenceInputStream"/>
|
||||||
</implementation>
|
</implementation>
|
||||||
<implementation name="com.sun.star.comp.SequenceOutputStreamService">
|
<implementation name="com.sun.star.comp.SequenceOutputStreamService"
|
||||||
|
constructor="com_sun_star_comp_SequenceOutputStreamService">
|
||||||
<service name="com.sun.star.io.SequenceOutputStream"/>
|
<service name="com.sun.star.io.SequenceOutputStream"/>
|
||||||
</implementation>
|
</implementation>
|
||||||
<implementation name="com.sun.star.comp.comphelper.OPropertyBag">
|
<implementation name="com.sun.star.comp.comphelper.OPropertyBag">
|
||||||
|
Reference in New Issue
Block a user