1/*
2 * Copyright 2019, Dario Casalinuovo. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _DVD_STREAMER_PLUGIN_H
6#define _DVD_STREAMER_PLUGIN_H
7
8
9#include "StreamerPlugin.h"
10
11class DVDStreamer : public Streamer
12{
13public:
14								DVDStreamer();
15	virtual						~DVDStreamer();
16
17	virtual status_t			Sniff(const BUrl& url, BDataIO**);
18
19#if 0
20	virtual void				MouseMoved(uint32 x, uint32 y);
21	virtual void				MouseDown(uint32 x, uint32 y);
22#endif
23};
24
25
26class DVDStreamerPlugin : public StreamerPlugin
27{
28public:
29	virtual	Streamer*			NewStreamer();
30};
31
32
33#endif // _DVD_STREAMER_PLUGIN_H
34