blob: 6a8ebdba3b5a6dc5078a0954455f93ac8ad73cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*!
* \file vdr_setup.h
* \brief A setup class for a VDR media plugin (muggle)
*
* \version $Revision: 1.2 $
* \date $Date$
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author Responsible author: $Author$
*
* $Id$
*
* Adapted from
* MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels@iname.com>
*/
#ifndef ___VDR_SETUP_MG_H
#define ___VDR_SETUP_MG_H
// #include <osd.h>
#include <menuitems.h>
#include <string>
#include "mg_setup.h"
/*!
* \brief allow user to modify setup on OSD
*/
class mgMenuSetup : public cMenuSetupPage
{
private:
mgSetup m_data;
protected:
virtual void Store ();
public:
mgMenuSetup ();
};
#endif
|