diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-03 01:28:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-14 21:07:48 +0100 |
| commit | 709a3af8ac11cdeb688f2d77209e036a88b3c714 (patch) | |
| tree | e8ec30e72f8556d19658437c9a67fa2a34c1009a /src/lib/dcp_content.h | |
| parent | 154fae5683aa15e84bd07e37f4b219c86354692d (diff) | |
Initial and not-working information panel in player.
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 18d198fe8..434b61046 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -124,6 +124,11 @@ public: return _cpl; } + std::string name () const { + boost::mutex::scoped_lock lm (_mutex); + return _name; + } + private: friend class reels_test5; @@ -137,11 +142,6 @@ private: std::list<std::string>& why_not ) const; - std::string name () const { - boost::mutex::scoped_lock lm (_mutex); - return _name; - } - std::string _name; /** true if our DCP is encrypted */ bool _encrypted; |
