blob: d95fd1cb022a39f77c6d76891c60b33098bb064c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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__
|