blob: 752b9fa1aad331be21d7b99c4e1a00765ffecf97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* dvbosd.h: Implementation of the DVB On Screen Display
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbosd.h 1.18 2004/06/12 13:09:52 kls Exp $
*/
#ifndef __DVBOSD_H
#define __DVBOSD_H
#include "osd.h"
class cDvbOsdProvider : public cOsdProvider {
private:
int osdDev;
public:
cDvbOsdProvider(int OsdDev);
virtual cOsd *CreateOsd(int Left, int Top);
};
#endif //__DVBOSD_H
|