summaryrefslogtreecommitdiff
path: root/src/wx/job_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-29 08:31:23 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-29 08:31:23 +0200
commitb249700e1da7dd6631a8b4440587f4093a2bdef1 (patch)
tree71f88855e72b11f927d194f0676bac93845d26be /src/wx/job_view.h
parent94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff)
Remove use of boost::noncopyable.
Diffstat (limited to 'src/wx/job_view.h')
-rw-r--r--src/wx/job_view.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/job_view.h b/src/wx/job_view.h
index 19f746b01..4a602fc62 100644
--- a/src/wx/job_view.h
+++ b/src/wx/job_view.h
@@ -21,7 +21,6 @@
#ifndef DCPOMATIC_JOB_VIEW_H
#define DCPOMATIC_JOB_VIEW_H
-#include <boost/noncopyable.hpp>
#include <boost/signals2.hpp>
class Job;
@@ -36,12 +35,15 @@ class wxButton;
class wxSizer;
class wxCheckBox;
-class JobView : public boost::noncopyable
+class JobView
{
public:
JobView (std::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
virtual ~JobView () {}
+ JobView (JobView const&) = delete;
+ JobView& operator= (JobView const&) = delete;
+
virtual int insert_position () const = 0;
virtual void job_list_changed () {}