3 #include <common/memory/safe_ptr.h>
\r
4 #include <common/utility/printable.h>
\r
6 #include <boost/noncopyable.hpp>
\r
8 #include <tbb/atomic.h>
\r
12 namespace caspar { namespace core {
\r
14 class frame_producer;
\r
17 class layer : boost::noncopyable
\r
20 layer(int index = -101, const printer& parent_printer = nullptr); // nothrow
\r
21 layer(layer&& other); // nothrow
\r
22 layer& operator=(layer&& other); // nothrow
\r
24 void swap(layer& other); // nothrow
\r
26 void load(const safe_ptr<frame_producer>& producer, bool play_on_load = false); // nothrow
\r
27 void preview(const safe_ptr<frame_producer>& producer); // nothrow
\r
28 void play(); // nothrow
\r
29 void pause(); // nothrow
\r
30 void stop(); // nothrow
\r
31 void clear(); // nothrow
\r
33 safe_ptr<frame_producer> foreground() const; // nothrow
\r
34 safe_ptr<frame_producer> background() const; // nothrow
\r
36 safe_ptr<draw_frame> receive(); // nothrow
\r
38 std::wstring print() const;
\r
40 struct implementation;
\r
41 std::shared_ptr<implementation> impl_;
\r