diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-24 12:40:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-24 12:40:43 +0100 |
| commit | ebd495da2fe5be8c07cf7fb52e8283bb7f4113c1 (patch) | |
| tree | 93c0f449f19258d5f3c2d7b6b205b54966c4c7a7 /src/lib/content.h | |
| parent | 64a2f1bb6a7b972607fa363631ef7a47444e8217 (diff) | |
Allow drag of content; fix up some problems with timings.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index bcfbef7e3..321252c02 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -36,6 +36,12 @@ namespace cxml { class Job; class Film; +class ContentProperty +{ +public: + static int const START; +}; + class Content : public boost::enable_shared_from_this<Content> { public: @@ -61,6 +67,8 @@ public: return _digest; } + void set_start (Time); + Time start () const { boost::mutex::scoped_lock lm (_mutex); return _start; |
