summaryrefslogtreecommitdiff
path: root/xml/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'xml/function.h')
-rw-r--r--xml/function.h8
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();