diff options
author | lordjaxom <lordjaxom> | 2005-01-26 20:38:45 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-26 20:38:45 +0000 |
commit | f9a94c9a8c8e1065c5276b3f2f8cac531e58774c (patch) | |
tree | bbce23b681fd1518a5826aff28a5fa176495c642 /xml/function.h | |
parent | 75fbf0137aafad470843d1b27a1716645dd38de8 (diff) | |
download | vdr-plugin-text2skin-f9a94c9a8c8e1065c5276b3f2f8cac531e58774c.tar.gz vdr-plugin-text2skin-f9a94c9a8c8e1065c5276b3f2f8cac531e58774c.tar.bz2 |
- consistent parent element handling
Diffstat (limited to 'xml/function.h')
-rw-r--r-- | xml/function.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/xml/function.h b/xml/function.h index 72b887c..bef62b7 100644 --- a/xml/function.h +++ b/xml/function.h @@ -1,5 +1,5 @@ /* - * $Id: function.h,v 1.8 2005/01/11 18:17:46 lordjaxom Exp $ + * $Id: function.h,v 1.9 2005/01/26 20:40:08 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_XML_FUNCTION_H @@ -14,6 +14,9 @@ #define MAXPARAMETERS 512 +class cxObject; +class cxSkin; + class cxFunction { public: enum eType { @@ -37,6 +40,7 @@ public: }; private: + cxObject *mObject; cxSkin *mSkin; eType mType; cxString mString; @@ -49,7 +53,7 @@ protected: cxType FunPlugin(const cxType &Param) const; public: - cxFunction(cxSkin *Skin); + cxFunction(cxObject *Parent); cxFunction(const cxString &String); cxFunction(const cxFunction &Src); ~cxFunction(); |