diff options
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__ |