diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-31 02:19:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-31 02:19:40 +0100 |
| commit | ed78fd3d138114185e43edf81ffe91db17377da0 (patch) | |
| tree | 398eede0828b52f222193fbdb5011791f92c774f /src/lib/playlist.h | |
| parent | d4f6b22be930567dfc25be027b28a747d287d8a0 (diff) | |
Skeletal remains.
Diffstat (limited to 'src/lib/playlist.h')
| -rw-r--r-- | src/lib/playlist.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h new file mode 100644 index 000000000..4add76344 --- /dev/null +++ b/src/lib/playlist.h @@ -0,0 +1,30 @@ +/* + Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <boost/shared_ptr.hpp> +#include "video_source.h" +#include "video_sink.h" + +class Content; + +class Playlist : public VideoSource, public AudioSource +{ +public: + Playlist (std::list<boost::shared_ptr<Content> >); +}; |
