diff options
author | horchi <vdr@jwendel.de> | 2017-03-05 16:47:41 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-05 16:47:41 +0100 |
commit | 22ffee20bbacbc3378e4ba0df5b7f0c3daaeffc0 (patch) | |
tree | de46c945c62d43d1febb027b5bfa075e58c5b69a /imlibrenderer/dmyrenderer | |
download | vdr-plugin-graphtftng-master.tar.gz vdr-plugin-graphtftng-master.tar.bz2 |
Diffstat (limited to 'imlibrenderer/dmyrenderer')
-rw-r--r-- | imlibrenderer/dmyrenderer/dmyrenderer.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/imlibrenderer/dmyrenderer/dmyrenderer.h b/imlibrenderer/dmyrenderer/dmyrenderer.h new file mode 100644 index 0000000..d95fd1c --- /dev/null +++ b/imlibrenderer/dmyrenderer/dmyrenderer.h @@ -0,0 +1,28 @@ +//*************************************************************************** +// Group VDR/GraphTFT +// File dmyrenderer.c +// Date 31.10.06 - Jörg Wendel +// This code is distributed under the terms and conditions of the +// GNU GENERAL PUBLIC LICENSE. See the file COPYING for details. +//-------------------------------------------------------------------------- +// Class DummyRenderer +//*************************************************************************** + +#ifndef __GTFT_DMYRENDERER_HPP__ +#define __GTFT_DMYRENDERER_HPP__ + +#include "imlibrenderer.h" + +class DummyRenderer : public ImlibRenderer +{ + public: + + DummyRenderer(int x, int y, int width, int height, string cfgPath, int utf, string thmPath) + : ImlibRenderer(x, y, width, height, cfgPath, utf, thmPath) { } + + int init(int lazy) { return ImlibRenderer::init(lazy); } + void deinit() { } +}; + +//*************************************************************************** +#endif // __GTFT_DMYRENDERER_HPP__ |