summaryrefslogtreecommitdiff
path: root/binaryurp/source/bridgefactory.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/bridgefactory.hxx')
-rw-r--r--binaryurp/source/bridgefactory.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/binaryurp/source/bridgefactory.hxx b/binaryurp/source/bridgefactory.hxx
index 2083eeb83b6b..27ec27429d07 100644
--- a/binaryurp/source/bridgefactory.hxx
+++ b/binaryurp/source/bridgefactory.hxx
@@ -26,7 +26,6 @@
#include <list>
#include <map>
-#include "boost/noncopyable.hpp"
#include "com/sun/star/bridge/XBridgeFactory2.hpp"
#include "com/sun/star/lang/XServiceInfo.hpp"
#include "com/sun/star/uno/Exception.hpp"
@@ -55,9 +54,7 @@ typedef
com::sun::star::bridge::XBridgeFactory2 >
BridgeFactoryBase;
-class BridgeFactory:
- private cppu::BaseMutex, public BridgeFactoryBase,
- private boost::noncopyable
+class BridgeFactory : private cppu::BaseMutex, public BridgeFactoryBase
{
public:
static com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
@@ -78,6 +75,9 @@ public:
using BridgeFactoryBase::release;
private:
+ BridgeFactory(const BridgeFactory&) SAL_DELETED_FUNCTION;
+ BridgeFactory& operator=(const BridgeFactory&) SAL_DELETED_FUNCTION;
+
explicit BridgeFactory(
com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
const & context);