Kaydet (Commit) e00d41f7 authored tarafından Takeshi Abe's avatar Takeshi Abe Kaydeden (comit) Noel Grandin

io: tdf#88206 replace cppu::WeakImplHelper* etc.

with the variadic variants.

Change-Id: Iad03db6b729a785ab8b29a69943fa45f5a36b21b
Reviewed-on: https://gerrit.libreoffice.org/17849Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst b83c4ea5
......@@ -23,7 +23,7 @@
#include "com/sun/star/uno/Sequence.hxx"
#include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hdl"
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppunit/TestAssert.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>
......@@ -34,7 +34,7 @@
namespace {
class Input: public cppu::WeakImplHelper1<css::io::XInputStream> {
class Input: public cppu::WeakImplHelper<css::io::XInputStream> {
public:
Input(): open_(true), index_(0) {}
......
......@@ -23,7 +23,7 @@
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
......@@ -53,7 +53,7 @@ namespace io_TextInputStream
#define INITIAL_UNICODE_BUFFER_CAPACITY 0x100
#define READ_BYTE_COUNT 0x100
class OTextInputStream : public WeakImplHelper2< XTextInputStream2, XServiceInfo >
class OTextInputStream : public WeakImplHelper< XTextInputStream2, XServiceInfo >
{
Reference< XInputStream > mxStream;
......
......@@ -23,7 +23,7 @@
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
......@@ -50,7 +50,7 @@ namespace io_TextOutputStream
// Implementation XTextOutputStream
class OTextOutputStream : public WeakImplHelper2< XTextOutputStream2, XServiceInfo >
class OTextOutputStream : public WeakImplHelper< XTextOutputStream2, XServiceInfo >
{
Reference< XOutputStream > mxStream;
......
......@@ -23,7 +23,7 @@
#include <osl/diagnose.h>
#include <osl/mutex.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase.hxx>
using namespace ::osl;
using namespace ::cppu;
......@@ -36,7 +36,7 @@ using namespace ::com::sun::star::io;
namespace io_acceptor
{
typedef WeakImplHelper1< XConnection > MyPipeConnection;
typedef WeakImplHelper< XConnection > MyPipeConnection;
class PipeConnection :
public MyPipeConnection
......
......@@ -27,7 +27,7 @@
#include <com/sun/star/connection/XConnectionBroadcaster.hpp>
#include <com/sun/star/connection/ConnectionSetupException.hpp>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
using namespace ::osl;
using namespace ::cppu;
......@@ -63,7 +63,7 @@ namespace io_acceptor {
XStreamListener_hash_set;
class SocketConnection : public ::cppu::WeakImplHelper2<
class SocketConnection : public ::cppu::WeakImplHelper<
::com::sun::star::connection::XConnection,
::com::sun::star::connection::XConnectionBroadcaster>
......
......@@ -22,7 +22,7 @@
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include "cppuhelper/unourl.hxx"
......@@ -46,7 +46,7 @@ using namespace ::com::sun::star::connection;
namespace io_acceptor
{
class OAcceptor : public WeakImplHelper2< XAcceptor, XServiceInfo >
class OAcceptor : public WeakImplHelper< XAcceptor, XServiceInfo >
{
public:
OAcceptor(const Reference< XComponentContext > & xCtx);
......
......@@ -22,7 +22,7 @@
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include "cppuhelper/unourl.hxx"
......@@ -47,7 +47,7 @@ using namespace ::com::sun::star::connection;
namespace stoc_connector
{
class OConnector : public WeakImplHelper2< XConnector, XServiceInfo >
class OConnector : public WeakImplHelper< XConnector, XServiceInfo >
{
Reference< XMultiComponentFactory > _xSMgr;
Reference< XComponentContext > _xCtx;
......
......@@ -20,8 +20,7 @@
#ifndef INCLUDED_IO_SOURCE_CONNECTOR_CONNECTOR_HXX
#define INCLUDED_IO_SOURCE_CONNECTOR_CONNECTOR_HXX
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <com/sun/star/connection/XConnection.hpp>
#include <com/sun/star/connection/XConnectionBroadcaster.hpp>
......@@ -57,7 +56,7 @@ namespace stoc_connector
XStreamListener_hash_set;
class PipeConnection :
public ::cppu::WeakImplHelper1< ::com::sun::star::connection::XConnection >
public ::cppu::WeakImplHelper< ::com::sun::star::connection::XConnection >
{
public:
......@@ -86,7 +85,7 @@ namespace stoc_connector
};
class SocketConnection :
public ::cppu::WeakImplHelper2< ::com::sun::star::connection::XConnection, ::com::sun::star::connection::XConnectionBroadcaster >
public ::cppu::WeakImplHelper< ::com::sun::star::connection::XConnection, ::com::sun::star::connection::XConnectionBroadcaster >
{
public:
......
......@@ -23,8 +23,7 @@
#include <cppuhelper/weak.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase4.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <osl/endian.h>
......@@ -50,7 +49,7 @@ using namespace ::com::sun::star::lang;
namespace io_stm {
class ODataInputStream :
public WeakImplHelper4 <
public WeakImplHelper <
XDataInputStream,
XActiveDataSink,
XConnectable,
......@@ -496,7 +495,7 @@ Sequence<OUString> ODataInputStream_getSupportedServiceNames()
class ODataOutputStream :
public WeakImplHelper4 <
public WeakImplHelper <
XDataOutputStream,
XActiveDataSource,
XConnectable,
......@@ -910,7 +909,7 @@ typedef std::unordered_map
> ObjectContainer_Impl;
class OObjectOutputStream:
public ImplInheritanceHelper2<
public ImplInheritanceHelper<
ODataOutputStream, /* parent */
XObjectOutputStream, XMarkableStream >
{
......@@ -1177,7 +1176,7 @@ Sequence< OUString > OObjectOutputStream::getSupportedServiceNames() throw (std:
}
class OObjectInputStream:
public ImplInheritanceHelper2<
public ImplInheritanceHelper<
ODataInputStream, /* parent */
XObjectInputStream, XMarkableStream >
{
......
......@@ -31,7 +31,7 @@
#include <cppuhelper/factory.hxx>
#include <cppuhelper/weak.hxx>
#include <cppuhelper/implbase5.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <osl/mutex.hxx>
......@@ -66,7 +66,7 @@ namespace io_stm {
*
**********************/
class OMarkableOutputStream :
public WeakImplHelper5< XOutputStream ,
public WeakImplHelper< XOutputStream ,
XActiveDataSource ,
XMarkableStream ,
XConnectable,
......@@ -479,7 +479,7 @@ Sequence<OUString> OMarkableOutputStream_getSupportedServiceNames()
class OMarkableInputStream :
public WeakImplHelper5
public WeakImplHelper
<
XInputStream,
XActiveDataSink,
......
......@@ -27,7 +27,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <osl/conditn.hxx>
......@@ -51,7 +51,7 @@ using namespace ::com::sun::star::lang;
namespace io_stm{
class OPipeImpl :
public WeakImplHelper3< XPipe , XConnectable , XServiceInfo >
public WeakImplHelper< XPipe , XConnectable , XServiceInfo >
{
public:
OPipeImpl( );
......
......@@ -33,7 +33,7 @@
#include <uno/dispatcher.h>
#include <uno/mapping.hxx>
#include <cppuhelper/implbase5.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/interfacecontainer.hxx>
#include <cppuhelper/supportsservice.hxx>
......@@ -53,7 +53,7 @@ using namespace com::sun::star::io;
namespace io_stm {
class Pump : public WeakImplHelper5<
class Pump : public WeakImplHelper<
XActiveDataSource, XActiveDataSink, XActiveDataControl, XConnectable, XServiceInfo >
{
Mutex m_aMutex;
......
......@@ -32,8 +32,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
......@@ -61,7 +60,7 @@ using namespace ::com::sun::star::beans;
*/
class ODataStreamTest :
public WeakImplHelper1< XSimpleTest >
public WeakImplHelper< XSimpleTest >
{
public:
ODataStreamTest( const Reference < XMultiServiceFactory > & rFactory ) :
......@@ -367,7 +366,7 @@ OUString ODataStreamTest_getImplementationName( int i) throw ()
}
}
class MyPersistObject : public WeakImplHelper2< XPersistObject , XPropertySet >
class MyPersistObject : public WeakImplHelper< XPersistObject , XPropertySet >
{
public:
MyPersistObject( ) : m_sServiceName( OMyPersistObject_getServiceName() ) ,
......
......@@ -26,9 +26,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase.hxx>
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
......@@ -44,7 +42,7 @@ using namespace ::com::sun::star::test;
#include "testfactreg.hxx"
class OMarkableOutputStreamTest : public WeakImplHelper1< XSimpleTest >
class OMarkableOutputStreamTest : public WeakImplHelper< XSimpleTest >
{
public:
OMarkableOutputStreamTest( const Reference< XMultiServiceFactory > & rFactory );
......@@ -403,7 +401,7 @@ OUString OMarkableOutputStreamTest_getImplementationName() throw ()
// Input stream
class OMarkableInputStreamTest : public WeakImplHelper1< XSimpleTest >
class OMarkableInputStreamTest : public WeakImplHelper< XSimpleTest >
{
public:
OMarkableInputStreamTest( const Reference< XMultiServiceFactory > & rFactory );
......
......@@ -28,7 +28,7 @@
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase.hxx>
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
......@@ -91,7 +91,7 @@ private:
class OPipeTest : public WeakImplHelper1 < XSimpleTest >
class OPipeTest : public WeakImplHelper < XSimpleTest >
{
public:
OPipeTest( const Reference< XMultiServiceFactory > & rFactory );
......
......@@ -34,7 +34,7 @@
#include <uno/dispatcher.h>
#include <uno/mapping.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/factory.hxx>
#include <osl/mutex.hxx>
#include <osl/thread.h>
......@@ -60,7 +60,7 @@ static void mywait()
osl_yieldThread();
}
class OPumpTest : public WeakImplHelper1 < XSimpleTest >
class OPumpTest : public WeakImplHelper < XSimpleTest >
{
public:
OPumpTest( const Reference< XMultiServiceFactory > & rFactory );
......@@ -226,7 +226,7 @@ void OPumpTest::testSimple( const Reference < XInterface > &r )
}
class TestListener: public WeakImplHelper1< XStreamListener >
class TestListener: public WeakImplHelper< XStreamListener >
{
public:
sal_Bool m_bStarted;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment