blob: befbd6f4e05027b413d0a9c269a573221ced808e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __FFNETDEVSETUP_H
#define __FFNETDEVSETUP_H
#include <vdr/plugin.h>
class cFFNetDevSetup : public cMenuSetupPage
{
private:
int m_iAutoSetPrimaryDVB;
protected:
virtual void Store(void);
public:
cFFNetDevSetup(void);
};
#endif //__FFNETDEVSETUP_H
|