summaryrefslogtreecommitdiff
path: root/src/wx/content_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-07 22:15:01 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-07 22:15:01 +0200
commit7bc2134d658778e04f1756c255e604b4ab5a5831 (patch)
treeb5ba51f2534604a6528fbbb130fd0cfca7d6fb70 /src/wx/content_view.h
parenta771a806291243760552988a1a7a5742bc007ee2 (diff)
Assorted C++11/formatting cleanups.
Diffstat (limited to 'src/wx/content_view.h')
-rw-r--r--src/wx/content_view.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wx/content_view.h b/src/wx/content_view.h
index 0bbfffaa7..1ad7c541a 100644
--- a/src/wx/content_view.h
+++ b/src/wx/content_view.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,6 +18,7 @@
*/
+
#include "lib/content_store.h"
#include "lib/warnings.h"
DCPOMATIC_DISABLE_WARNINGS
@@ -25,9 +26,11 @@ DCPOMATIC_DISABLE_WARNINGS
DCPOMATIC_ENABLE_WARNINGS
#include <vector>
+
class Content;
class Film;
+
class ContentView : public wxListCtrl, public ContentStore
{
public:
@@ -42,5 +45,5 @@ private:
void add (std::shared_ptr<Content> content);
std::weak_ptr<Film> _film;
- std::vector<std::shared_ptr<Content> > _content;
+ std::vector<std::shared_ptr<Content>> _content;
};