mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
14 lines
237 B
C
14 lines
237 B
C
|
#ifndef __DISPLAYPLUGIN_H
|
||
|
#define __DISPLAYPLUGIN_H
|
||
|
|
||
|
#include "libtemplate/template.h"
|
||
|
|
||
|
class cDisplayPlugin {
|
||
|
private:
|
||
|
public:
|
||
|
cDisplayPlugin(cTemplate *pluginTemplate);
|
||
|
virtual ~cDisplayPlugin();
|
||
|
};
|
||
|
|
||
|
#endif //__DISPLAYPLUGIN_H
|