tdf#94306 replace boost::noncopyable in c...
comphelper, connectivity and cppcanvas. Replace with C++11 delete copy-constructur and copy-assignment. Removed unused boost/noncopyable.hpp includes from some source files in cppcanvas. Change-Id: I90780820e21fbfd291ac10c266e7d16616e3a81b Reviewed-on: https://gerrit.libreoffice.org/23905 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
This commit is contained in:
parent
98d7b02f2b
commit
f781997ee1
@ -42,8 +42,6 @@
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
namespace comphelper
|
||||
{
|
||||
|
||||
@ -212,7 +210,7 @@ namespace comphelper
|
||||
};
|
||||
|
||||
|
||||
class MapEnumerator: private boost::noncopyable
|
||||
class MapEnumerator
|
||||
{
|
||||
public:
|
||||
MapEnumerator( ::cppu::OWeakObject& _rParent, MapData& _mapData, const EnumerationType _type )
|
||||
@ -239,6 +237,10 @@ namespace comphelper
|
||||
}
|
||||
}
|
||||
|
||||
// noncopyable
|
||||
MapEnumerator(const MapEnumerator&) = delete;
|
||||
const MapEnumerator& operator=(const MapEnumerator&) = delete;
|
||||
|
||||
// XEnumeration equivalents
|
||||
bool hasMoreElements();
|
||||
Any nextElement();
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include <com/sun/star/lang/XSingleComponentFactory.hpp>
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
using namespace com::sun::star;
|
||||
|
||||
@ -36,12 +35,14 @@ namespace service_decl {
|
||||
|
||||
class ServiceDecl::Factory :
|
||||
public cppu::WeakImplHelper<lang::XSingleComponentFactory,
|
||||
lang::XServiceInfo>,
|
||||
private boost::noncopyable
|
||||
lang::XServiceInfo>
|
||||
{
|
||||
public:
|
||||
explicit Factory( ServiceDecl const& rServiceDecl )
|
||||
: m_rServiceDecl(rServiceDecl) {}
|
||||
// noncopyable
|
||||
Factory(const Factory&) = delete;
|
||||
const Factory& operator=(const Factory&) = delete;
|
||||
|
||||
// XServiceInfo:
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#include <com/sun/star/container/XSet.hpp>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <cppuhelper/implbase5.hxx>
|
||||
#include <comphelper/interfacecontainer2.hxx>
|
||||
#include <comphelper/propstate.hxx>
|
||||
@ -71,7 +70,6 @@ namespace comphelper
|
||||
,public OPropertyBag_PBase
|
||||
,public OPropertyBag_Base
|
||||
,public ::cppu::IEventNotificationHook
|
||||
,private boost::noncopyable
|
||||
{
|
||||
private:
|
||||
/// our IPropertyArrayHelper implementation
|
||||
@ -90,6 +88,10 @@ namespace comphelper
|
||||
bool m_isModified;
|
||||
|
||||
public:
|
||||
//noncopyable
|
||||
OPropertyBag(const OPropertyBag&) = delete;
|
||||
const OPropertyBag& operator=(const OPropertyBag&) = delete;
|
||||
|
||||
// XServiceInfo - static versions
|
||||
static css::uno::Sequence< OUString > getSupportedServiceNames_static() throw( css::uno::RuntimeException );
|
||||
static OUString getImplementationName_static() throw( css::uno::RuntimeException );
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "comphelper_module.hxx"
|
||||
#include "comphelper_services.hxx"
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <osl/mutex.hxx>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
@ -44,12 +43,15 @@ class SequenceInputStreamService:
|
||||
public ::cppu::WeakImplHelper<
|
||||
lang::XServiceInfo,
|
||||
io::XSeekableInputStream,
|
||||
lang::XInitialization>,
|
||||
private boost::noncopyable
|
||||
lang::XInitialization>
|
||||
{
|
||||
public:
|
||||
explicit SequenceInputStreamService();
|
||||
|
||||
// noncopyable
|
||||
SequenceInputStreamService(const SequenceInputStreamService&) = delete;
|
||||
const SequenceInputStreamService& operator=(const SequenceInputStreamService&) = delete;
|
||||
|
||||
// css::lang::XServiceInfo:
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( uno::RuntimeException, std::exception ) override;
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString & ServiceName ) throw ( uno::RuntimeException, std::exception ) override;
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "comphelper_module.hxx"
|
||||
#include "comphelper_services.hxx"
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <osl/mutex.hxx>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
@ -39,12 +38,15 @@ using namespace ::com::sun::star;
|
||||
namespace {
|
||||
|
||||
class SequenceOutputStreamService:
|
||||
public cppu::WeakImplHelper<lang::XServiceInfo, io::XSequenceOutputStream>,
|
||||
private boost::noncopyable
|
||||
public cppu::WeakImplHelper<lang::XServiceInfo, io::XSequenceOutputStream>
|
||||
{
|
||||
public:
|
||||
explicit SequenceOutputStreamService();
|
||||
|
||||
// noncopyable
|
||||
SequenceOutputStreamService(const SequenceOutputStreamService&) = delete;
|
||||
const SequenceOutputStreamService& operator=(const SequenceOutputStreamService&) = delete;
|
||||
|
||||
// css::lang::XServiceInfo:
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( uno::RuntimeException, std::exception ) override;
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString & ServiceName ) throw ( uno::RuntimeException, std::exception ) override;
|
||||
|
@ -19,7 +19,6 @@
|
||||
|
||||
#include <sal/config.h>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <connectivity/TTableHelper.hxx>
|
||||
#include <com/sun/star/sdbc/XRow.hpp>
|
||||
#include <com/sun/star/sdbc/XResultSet.hpp>
|
||||
@ -55,8 +54,7 @@ namespace
|
||||
{
|
||||
/// helper class for column property change events which holds the OComponentDefinition weak
|
||||
class OTableContainerListener:
|
||||
public ::cppu::WeakImplHelper< XContainerListener >,
|
||||
private boost::noncopyable
|
||||
public ::cppu::WeakImplHelper< XContainerListener >
|
||||
{
|
||||
OTableHelper* m_pComponent;
|
||||
::std::map< OUString,bool> m_aRefNames;
|
||||
@ -65,6 +63,9 @@ protected:
|
||||
virtual ~OTableContainerListener(){}
|
||||
public:
|
||||
explicit OTableContainerListener(OTableHelper* _pComponent) : m_pComponent(_pComponent){}
|
||||
// noncopyable
|
||||
OTableContainerListener(const OTableContainerListener&) = delete;
|
||||
const OTableContainerListener& operator=(const OTableContainerListener&) = delete;
|
||||
virtual void SAL_CALL elementInserted( const ::com::sun::star::container::ContainerEvent& /*Event*/ ) throw (RuntimeException, std::exception) override
|
||||
{
|
||||
}
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include <basegfx/point/b2dpoint.hxx>
|
||||
#include <basegfx/range/b2drange.hxx>
|
||||
#include <basegfx/tools/canvastools.hxx>
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include "cachedprimitivebase.hxx"
|
||||
#include "bitmapaction.hxx"
|
||||
#include "outdevstate.hxx"
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include <com/sun/star/rendering/XCanvas.hpp>
|
||||
|
||||
#include <cppcanvas/canvas.hxx>
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include "action.hxx"
|
||||
|
||||
@ -46,8 +45,7 @@ namespace cppcanvas
|
||||
class' public render() method gets called, the cached
|
||||
representation is taken.
|
||||
*/
|
||||
class CachedPrimitiveBase : public Action,
|
||||
private ::boost::noncopyable
|
||||
class CachedPrimitiveBase : public Action
|
||||
{
|
||||
public:
|
||||
/** Constructor
|
||||
@ -65,6 +63,9 @@ namespace cppcanvas
|
||||
bool bOnlyRedrawWithSameTransform );
|
||||
virtual ~CachedPrimitiveBase() {}
|
||||
|
||||
CachedPrimitiveBase(const CachedPrimitiveBase&) = delete;
|
||||
const CachedPrimitiveBase& operator=(const CachedPrimitiveBase&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
|
||||
protected:
|
||||
|
@ -31,8 +31,6 @@
|
||||
#include <basegfx/tools/canvastools.hxx>
|
||||
#include <canvas/canvastools.hxx>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include <cppcanvas/canvas.hxx>
|
||||
|
||||
#include <mtftools.hxx>
|
||||
@ -46,7 +44,7 @@ namespace cppcanvas
|
||||
{
|
||||
namespace
|
||||
{
|
||||
class LineAction : public Action, private ::boost::noncopyable
|
||||
class LineAction : public Action
|
||||
{
|
||||
public:
|
||||
LineAction( const ::basegfx::B2DPoint&,
|
||||
@ -54,6 +52,9 @@ namespace cppcanvas
|
||||
const CanvasSharedPtr&,
|
||||
const OutDevState& );
|
||||
|
||||
LineAction(const LineAction&) = delete;
|
||||
const LineAction& operator=(const LineAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
|
@ -28,8 +28,6 @@
|
||||
#include <basegfx/tools/canvastools.hxx>
|
||||
#include <canvas/canvastools.hxx>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include "pointaction.hxx"
|
||||
#include "outdevstate.hxx"
|
||||
#include "cppcanvas/canvas.hxx"
|
||||
@ -44,7 +42,7 @@ namespace cppcanvas
|
||||
{
|
||||
namespace
|
||||
{
|
||||
class PointAction : public Action, private ::boost::noncopyable
|
||||
class PointAction : public Action
|
||||
{
|
||||
public:
|
||||
PointAction( const ::basegfx::B2DPoint&,
|
||||
@ -55,6 +53,9 @@ namespace cppcanvas
|
||||
const OutDevState&,
|
||||
const ::Color& );
|
||||
|
||||
PointAction(const PointAction&) = delete;
|
||||
const PointAction& operator=(const PointAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
|
@ -31,8 +31,6 @@
|
||||
#include <basegfx/matrix/b2dhommatrix.hxx>
|
||||
#include <canvas/canvastools.hxx>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include "cachedprimitivebase.hxx"
|
||||
#include "polypolyaction.hxx"
|
||||
#include "outdevstate.hxx"
|
||||
|
@ -41,7 +41,6 @@
|
||||
#include <canvas/canvastools.hxx>
|
||||
|
||||
#include <memory>
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include "textaction.hxx"
|
||||
#include "outdevstate.hxx"
|
||||
@ -606,7 +605,7 @@ namespace cppcanvas
|
||||
}
|
||||
|
||||
|
||||
class TextAction : public Action, private ::boost::noncopyable
|
||||
class TextAction : public Action
|
||||
{
|
||||
public:
|
||||
TextAction( const ::basegfx::B2DPoint& rStartPoint,
|
||||
@ -624,6 +623,9 @@ namespace cppcanvas
|
||||
const OutDevState& rState,
|
||||
const ::basegfx::B2DHomMatrix& rTextTransform );
|
||||
|
||||
TextAction(const TextAction&) = delete;
|
||||
const TextAction& operator=(const TextAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
@ -759,8 +761,7 @@ namespace cppcanvas
|
||||
|
||||
class EffectTextAction :
|
||||
public Action,
|
||||
public TextRenderer,
|
||||
private ::boost::noncopyable
|
||||
public TextRenderer
|
||||
{
|
||||
public:
|
||||
EffectTextAction( const ::basegfx::B2DPoint& rStartPoint,
|
||||
@ -788,6 +789,9 @@ namespace cppcanvas
|
||||
const OutDevState& rState,
|
||||
const ::basegfx::B2DHomMatrix& rTextTransform );
|
||||
|
||||
EffectTextAction(const EffectTextAction&) = delete;
|
||||
const EffectTextAction& operator=(const EffectTextAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
@ -996,7 +1000,7 @@ namespace cppcanvas
|
||||
}
|
||||
|
||||
|
||||
class TextArrayAction : public Action, private ::boost::noncopyable
|
||||
class TextArrayAction : public Action
|
||||
{
|
||||
public:
|
||||
TextArrayAction( const ::basegfx::B2DPoint& rStartPoint,
|
||||
@ -1016,6 +1020,9 @@ namespace cppcanvas
|
||||
const OutDevState& rState,
|
||||
const ::basegfx::B2DHomMatrix& rTextTransform );
|
||||
|
||||
TextArrayAction(const TextArrayAction&) = delete;
|
||||
const TextArrayAction& operator=(const TextArrayAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
@ -1174,8 +1181,7 @@ namespace cppcanvas
|
||||
|
||||
class EffectTextArrayAction :
|
||||
public Action,
|
||||
public TextRenderer,
|
||||
private ::boost::noncopyable
|
||||
public TextRenderer
|
||||
{
|
||||
public:
|
||||
EffectTextArrayAction( const ::basegfx::B2DPoint& rStartPoint,
|
||||
@ -1204,6 +1210,9 @@ namespace cppcanvas
|
||||
const OutDevState& rState,
|
||||
const ::basegfx::B2DHomMatrix& rTextTransform );
|
||||
|
||||
EffectTextArrayAction(const EffectTextArrayAction&) = delete;
|
||||
const EffectTextArrayAction& operator=(const EffectTextArrayAction&);
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
@ -1510,8 +1519,7 @@ namespace cppcanvas
|
||||
|
||||
class OutlineAction :
|
||||
public Action,
|
||||
public TextRenderer,
|
||||
private ::boost::noncopyable
|
||||
public TextRenderer
|
||||
{
|
||||
public:
|
||||
OutlineAction( const ::basegfx::B2DPoint& rStartPoint,
|
||||
@ -1538,6 +1546,9 @@ namespace cppcanvas
|
||||
const OutDevState& rState,
|
||||
const ::basegfx::B2DHomMatrix& rTextTransform );
|
||||
|
||||
OutlineAction(const OutlineAction&) = delete;
|
||||
const OutlineAction& operator=(const OutlineAction&);
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
|
@ -48,8 +48,6 @@
|
||||
#include <basegfx/tools/canvastools.hxx>
|
||||
#include <basegfx/matrix/b2dhommatrixtools.hxx>
|
||||
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#include "transparencygroupaction.hxx"
|
||||
#include "outdevstate.hxx"
|
||||
#include "mtftools.hxx"
|
||||
@ -66,7 +64,7 @@ namespace cppcanvas
|
||||
// ======================
|
||||
namespace
|
||||
{
|
||||
class TransparencyGroupAction : public Action, private ::boost::noncopyable
|
||||
class TransparencyGroupAction : public Action
|
||||
{
|
||||
public:
|
||||
/** Create new transparency group action.
|
||||
@ -94,6 +92,9 @@ namespace cppcanvas
|
||||
const CanvasSharedPtr& rCanvas,
|
||||
const OutDevState& rState );
|
||||
|
||||
TransparencyGroupAction(const TransparencyGroupAction&) = delete;
|
||||
const TransparencyGroupAction& operator=(const TransparencyGroupAction&) = delete;
|
||||
|
||||
virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const override;
|
||||
virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
|
||||
const Subset& rSubset ) const override;
|
||||
|
Loading…
x
Reference in New Issue
Block a user