webOS Userland
Native system APIs for webOS
 
Loading...
Searching...
No Matches
abstractplayer.hpp
1#pragma once
2
3#include <boost/shared_ptr.hpp>
4#include <player-factory/player.hpp>
5
6namespace mediapipeline {
7
8class AbstractPlayer : public Player {
9public:
10 boost::shared_ptr<Pipeline> getPipeline() const;
11};
12
13}
Definition abstractplayer.hpp:8
Definition player.hpp:5