summaryrefslogtreecommitdiff
path: root/rcfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'rcfile.h')
-rw-r--r--rcfile.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/rcfile.h b/rcfile.h
index b10fd63..2bf5ed1 100644
--- a/rcfile.h
+++ b/rcfile.h
@@ -28,17 +28,22 @@ The project's page is at http://winni.vdr-developer.org/epgsearch
#define MAXSTRINGLEN 256
-class cRCLine : public cListObject {
+class cRCLine : public cListObject
+{
private:
- char *name;
- char *value;
+ char *name;
+ char *value;
public:
- cRCLine(void);
- cRCLine(const char *Name, const char *Value);
- virtual ~cRCLine();
- const char *Name(void) { return name; }
- const char *Value(void) { return value; }
- bool Parse(char *s);
+ cRCLine(void);
+ cRCLine(const char *Name, const char *Value);
+ virtual ~cRCLine();
+ const char *Name(void) {
+ return name;
+ }
+ const char *Value(void) {
+ return value;
+ }
+ bool Parse(char *s);
};