9d72a129c6
* Added copyright. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31918 a95241bf-73f2-0310-859d-f6bbb57e9c96
28 lines
488 B
C++
28 lines
488 B
C++
/*
|
|
* Copyright 2003, Marcus Overhagen. All rights reserved.
|
|
* Distributed under the terms of the MIT license.
|
|
*/
|
|
#ifndef _MEDIA_PLUGIN_H
|
|
#define _MEDIA_PLUGIN_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
namespace BPrivate { namespace media {
|
|
|
|
class MediaPlugin {
|
|
public:
|
|
MediaPlugin();
|
|
virtual ~MediaPlugin();
|
|
};
|
|
|
|
class Decoder;
|
|
class Reader;
|
|
|
|
} } // namespace BPrivate::media
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
extern "C" MediaPlugin* instantiate_plugin();
|
|
|
|
#endif // _MEDIA_PLUGIN_H
|