2003-11-04 04:32:33 +03:00
|
|
|
#ifndef _MEDIA_PLUGIN_H
|
|
|
|
#define _MEDIA_PLUGIN_H
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2003-11-23 21:17:35 +03:00
|
|
|
#include <BeBuild.h>
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
2003-10-18 03:55:19 +04:00
|
|
|
namespace BPrivate { namespace media {
|
|
|
|
|
|
|
|
class MediaPlugin
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MediaPlugin();
|
|
|
|
virtual ~MediaPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
class Decoder;
|
|
|
|
class Reader;
|
|
|
|
|
|
|
|
} } // namespace BPrivate::media
|
|
|
|
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
|
2003-11-04 04:32:33 +03:00
|
|
|
extern "C" MediaPlugin *instantiate_plugin();
|
|
|
|
|
|
|
|
#endif
|