C++11 tidying.
[dcpomatic.git] / src / wx / timeline_atmos_content_view.h
index 1e33c5fb2aa4bc965a59b8106901af2704f53299..15da14edc8be424aee2e436764d3634cc4342fcf 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "timeline_content_view.h"
 
+
 /** @class TimelineAtmosContentView
  *  @brief Timeline view for AtmosContent.
  */
 class TimelineAtmosContentView : public TimelineContentView
 {
 public:
-       TimelineAtmosContentView (Timeline& tl, boost::shared_ptr<Content> c);
+       TimelineAtmosContentView (Timeline& tl, std::shared_ptr<Content> c);
 
 private:
-       bool active () const {
+       bool active () const override {
                return true;
        }
-       wxColour background_colour () const;
-       wxColour foreground_colour () const;
+
+       wxColour background_colour () const override;
+       wxColour foreground_colour () const override;
 };