std::shared_ptr
[dcpomatic.git] / src / wx / content_view.h
index 471dd054bd95f81ab3ec29644a64c6a53ce465d4..0bbfffaa76418f331f1ee699d7d6afb3d21fe508 100644 (file)
 
 */
 
+#include "lib/content_store.h"
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/listctrl.h>
-#include <boost/shared_ptr.hpp>
-#include <boost/weak_ptr.hpp>
+DCPOMATIC_ENABLE_WARNINGS
 #include <vector>
 
 class Content;
 class Film;
 
-class ContentView : public wxListCtrl
+class ContentView : public wxListCtrl, public ContentStore
 {
 public:
-       ContentView (wxWindow* parent, boost::weak_ptr<Film> film);
+       ContentView (wxWindow* parent);
 
-       boost::shared_ptr<Content> selected () const;
+       std::shared_ptr<Content> selected () const;
        void update ();
 
-       boost::shared_ptr<Content> get (std::string digest) const;
-       void set_film (boost::weak_ptr<Film> film);
+       std::shared_ptr<Content> get (std::string digest) const;
 
 private:
-       void add (boost::shared_ptr<Content> content);
+       void add (std::shared_ptr<Content> content);
 
-       boost::weak_ptr<Film> _film;
-       std::vector<boost::shared_ptr<Content> > _content;
+       std::weak_ptr<Film> _film;
+       std::vector<std::shared_ptr<Content> > _content;
 };