diff options
author | lordjaxom <lordjaxom> | 2005-01-07 21:49:55 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-07 21:49:55 +0000 |
commit | e5b5bd85f617619b79c284671f5ba1feb207815c (patch) | |
tree | 8ffeaa6dd3b8e8ed1fbe053a1b8dee265dcd6429 /xml/function.h | |
parent | 62ad3100d861a1227fe4c1130dcf2a7ec096ed61 (diff) | |
download | vdr-plugin-text2skin-e5b5bd85f617619b79c284671f5ba1feb207815c.tar.gz vdr-plugin-text2skin-e5b5bd85f617619b79c284671f5ba1feb207815c.tar.bz2 |
- implemented functions gt, lt, ge and le
Diffstat (limited to 'xml/function.h')
-rw-r--r-- | xml/function.h | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/xml/function.h b/xml/function.h index afc3465..0e0a194 100644 --- a/xml/function.h +++ b/xml/function.h @@ -1,5 +1,5 @@ /* - * $Id: function.h,v 1.5 2005/01/05 19:32:43 lordjaxom Exp $ + * $Id: function.h,v 1.6 2005/01/07 21:50:27 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_XML_FUNCTION_H @@ -22,17 +22,21 @@ public: string = STRING, number = NUMBER, - fun_not = INTERNAL + 1, - fun_and = INTERNAL + 2, - fun_or = INTERNAL + 3, - fun_eq = INTERNAL + 4, - fun_file = INTERNAL + 5, - fun_trans = INTERNAL + 6, - fun_plugin = INTERNAL + 7 + fun_not = INTERNAL + 1, + fun_and = INTERNAL + 2, + fun_or = INTERNAL + 3, + fun_eq = INTERNAL + 4, + fun_file = INTERNAL + 5, + fun_trans = INTERNAL + 6, + fun_plugin = INTERNAL + 7, + fun_gt = INTERNAL + 8, + fun_lt = INTERNAL + 9, + fun_ge = INTERNAL + 10, + fun_le = INTERNAL + 11, }; - static const std::string False; - static const std::string True; + //static const std::string False; + //static const std::string True; private: cxSkin *mSkin; |