mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
17 lines
432 B
C++
17 lines
432 B
C++
#ifndef __DISPLAYCHANNELVIEWELEMENTS_H
|
|
#define __DISPLAYCHANNELVIEWELEMENTS_H
|
|
|
|
#include "../libtemplate/template.h"
|
|
#include "view.h"
|
|
#include "viewhelpers.h"
|
|
|
|
class cViewElementDevices : public cViewElement, public cViewHelpers {
|
|
private:
|
|
bool init;
|
|
public:
|
|
cViewElementDevices(cTemplateViewElement *tmplViewElement);
|
|
virtual ~cViewElementDevices() {};
|
|
void Render(void);
|
|
};
|
|
|
|
#endif //__DISPLAYCHANNELVIEWELEMENTS_H
|