diff options
Diffstat (limited to 'include/formula/omoduleclient.hxx')
-rw-r--r-- | include/formula/omoduleclient.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/formula/omoduleclient.hxx b/include/formula/omoduleclient.hxx index 258f9f8aebc9..3af3399bed8d 100644 --- a/include/formula/omoduleclient.hxx +++ b/include/formula/omoduleclient.hxx @@ -22,15 +22,16 @@ #include <sal/config.h> -#include <boost/noncopyable.hpp> #include <formula/formuladllapi.h> namespace formula { /** Base class for objects which use any global module-specific resources. */ -class FORMULA_DLLPUBLIC OModuleClient: private boost::noncopyable +class FORMULA_DLLPUBLIC OModuleClient { + OModuleClient(const OModuleClient&) = delete; + OModuleClient& operator=( const OModuleClient& ) = delete; public: OModuleClient(); ~OModuleClient(); |