summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-10-13 09:03:53 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-10-13 09:03:53 +0200
commite58fa67e6c53dc8ad061a2941b9984a0c1185a8f (patch)
tree1b0e139b036885c17195a78869d5ff6ccef80dfb /config.h
parentfadc2565d468afca10448600033b73af1ef74978 (diff)
downloadvdr-e58fa67e6c53dc8ad061a2941b9984a0c1185a8f.tar.gz
vdr-e58fa67e6c53dc8ad061a2941b9984a0c1185a8f.tar.bz2
Implemented '?' handling for commands.conf
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.h b/config.h
index 83ef9c00..a24f71a3 100644
--- a/config.h
+++ b/config.h
@@ -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);
};