diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-13 09:03:53 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-13 09:03:53 +0200 |
commit | e58fa67e6c53dc8ad061a2941b9984a0c1185a8f (patch) | |
tree | 1b0e139b036885c17195a78869d5ff6ccef80dfb /config.h | |
parent | fadc2565d468afca10448600033b73af1ef74978 (diff) | |
download | vdr-e58fa67e6c53dc8ad061a2941b9984a0c1185a8f.tar.gz vdr-e58fa67e6c53dc8ad061a2941b9984a0c1185a8f.tar.bz2 |
Implemented '?' handling for commands.conf
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.132 2002/10/06 16:03:01 kls Exp $ + * $Id: config.h 1.133 2002/10/13 08:35:49 kls Exp $ */ #ifndef __CONFIG_H @@ -87,12 +87,14 @@ class cCommand : public cListObject { private: char *title; char *command; + bool confirm; static char *result; public: cCommand(void); virtual ~cCommand(); bool Parse(const char *s); const char *Title(void) { return title; } + bool Confirm(void) { return confirm; } const char *Execute(void); }; |