From bb949ec65adf95f4a2c7dd5ee7e97b9daaaf3d3f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 16 Feb 2021 10:40:12 +0100 Subject: C++11 tidying. --- src/wx/timeline_view.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'src/wx/timeline_view.h') diff --git a/src/wx/timeline_view.h b/src/wx/timeline_view.h index bfd1de8b7..c40cf78ff 100644 --- a/src/wx/timeline_view.h +++ b/src/wx/timeline_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,25 +18,31 @@ */ + #ifndef DCPOMATIC_TIMELINE_VIEW_H #define DCPOMATIC_TIMELINE_VIEW_H + #include "lib/rect.h" #include "lib/dcpomatic_time.h" -#include + class wxGraphicsContext; class Timeline; + /** @class TimelineView * @brief Parent class for components of the timeline (e.g. a piece of content or an axis). */ -class TimelineView : public boost::noncopyable +class TimelineView { public: explicit TimelineView (Timeline& t); virtual ~TimelineView () {} + TimelineView (TimelineView const&) = delete; + TimelineView& operator= (TimelineView const&) = delete; + void paint (wxGraphicsContext* g, std::list > overlaps); void force_redraw (); @@ -53,6 +59,8 @@ private: dcpomatic::Rect _last_paint_bbox; }; -typedef std::vector > TimelineViewList; + +typedef std::vector> TimelineViewList; + #endif -- cgit v1.2.3