summaryrefslogtreecommitdiff
path: root/vdr_setup.h
blob: 67c0c635dc5e2cfc2a594e0f392b459b3ed8ed56 (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
/*!								-*- c++ -*-
 * \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 <string>

#include "mg_setup.h"

#include <vdr/menuitems.h>

#define MAX_PATH 256

/*!
 * \brief allow user to modify setup on OSD
 */
class mgMenuSetup : public cMenuSetupPage
{
	protected:
		virtual void Store ();
	public:
		mgMenuSetup ();
};
#endif