blob: 56c6cb3260cc646f3c8c22bc612e7a707f5a3f26 (
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
|
/*
* gamepad.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef GAMEPAD_SETUP_H
#define GAMEPAD_SETUP_H
#include <vdr/plugin.h>
#include "gamepad_config.h"
class cGamepadSetup : public cMenuSetupPage {
private:
cGamepadConfig data;
protected:
virtual void Store(void);
public:
cGamepadSetup();
};
#endif
|