diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-28 16:14:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-29 08:51:55 +0200 |
commit | 5d5c4686badbf67aa25b18701f25d90fa8b4e42a (patch) | |
tree | 39d10e1f40b12ee20c50d5eed313d46df054783d /include/unotest | |
parent | fbff75a64c7449aac85d640f67b1de147db35c3e (diff) |
remove boost::noncopyable from /include
Change-Id: I9fa22b06fabf79043ebc68be7afebc6e810f4db1
Diffstat (limited to 'include/unotest')
-rw-r--r-- | include/unotest/officeconnection.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/unotest/officeconnection.hxx b/include/unotest/officeconnection.hxx index eb00d261a299..e23e93cd3d51 100644 --- a/include/unotest/officeconnection.hxx +++ b/include/unotest/officeconnection.hxx @@ -22,7 +22,6 @@ #include <sal/config.h> -#include <boost/noncopyable.hpp> #include <com/sun/star/uno/Reference.hxx> #include <osl/process.h> #include <unotest/detail/unotestdllapi.hxx> @@ -35,10 +34,12 @@ namespace test { // Start up and shut down an OOo instance (details about the OOo instance are // tunneled in via "arg-..." bootstrap variables): -class OOO_DLLPUBLIC_UNOTEST OfficeConnection: private boost::noncopyable { +class OOO_DLLPUBLIC_UNOTEST OfficeConnection +{ + OfficeConnection(const OfficeConnection&) = delete; + OfficeConnection& operator=( const OfficeConnection& ) = delete; public: OfficeConnection(); - ~OfficeConnection(); void setUp(); |