summaryrefslogtreecommitdiff
path: root/basctl/source/inc/doceventnotifier.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/inc/doceventnotifier.hxx')
-rw-r--r--basctl/source/inc/doceventnotifier.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/basctl/source/inc/doceventnotifier.hxx b/basctl/source/inc/doceventnotifier.hxx
index e3cda5a93855..664330d97733 100644
--- a/basctl/source/inc/doceventnotifier.hxx
+++ b/basctl/source/inc/doceventnotifier.hxx
@@ -24,8 +24,6 @@
#include <rtl/ref.hxx>
-#include <boost/noncopyable.hpp>
-
namespace basctl
{
@@ -34,9 +32,13 @@ namespace basctl
class ScriptDocument;
- class SAL_NO_VTABLE DocumentEventListener : private ::boost::noncopyable
+ class SAL_NO_VTABLE DocumentEventListener
{
public:
+ DocumentEventListener(const DocumentEventListener&) = delete;
+ const DocumentEventListener& operator=(const DocumentEventListener&) = delete;
+ DocumentEventListener() = default;
+
virtual void onDocumentCreated( const ScriptDocument& _rDocument ) = 0;
virtual void onDocumentOpened( const ScriptDocument& _rDocument ) = 0;
virtual void onDocumentSave( const ScriptDocument& _rDocument ) = 0;