mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
21 lines
326 B
C++
21 lines
326 B
C++
#ifndef VIDEO_MOVIEAUDIOFACTORY_H
|
|
#define VIDEO_MOVIEAUDIOFACTORY_H
|
|
|
|
#include "audiodecoder.hpp"
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace Video
|
|
{
|
|
|
|
class MovieAudioFactory
|
|
{
|
|
public:
|
|
virtual boost::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
|
|
virtual ~MovieAudioFactory() {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|