blob: 821d9794c2c1ec9feb521b0adb9ceacf4e5ad1ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef DCPOMATIC_PLAYER_VIDEO_PREPARER_H
#define DCPOMATIC_PLAYER_VIDEO_PREPARER_H
#include "exception_store.h"
#include <boost/shared_ptr.hpp>
class PlayerVideo;
class PlayerVideoPreparer : public ExceptionStore
{
public:
virtual ~PlayerVideoPreparer () {}
virtual void request (boost::shared_ptr<PlayerVideo> pv) = 0;
};
#endif
|