diff options
author | louis <louis.braun@gmx.de> | 2014-12-03 18:12:37 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-12-03 18:12:37 +0100 |
commit | 7ce445025e10bf4eb0c4066907e588039c09f1ad (patch) | |
tree | 0a554b47d2db26909eb4628b70427cb40b8493b1 /libtemplate/templatefunction.h | |
parent | def1b3cc301398875b43fc52e50ed936302f56c6 (diff) | |
download | vdr-plugin-skindesigner-7ce445025e10bf4eb0c4066907e588039c09f1ad.tar.gz vdr-plugin-skindesigner-7ce445025e10bf4eb0c4066907e588039c09f1ad.tar.bz2 |
drawing ellipses antialiased with Cairo
Diffstat (limited to 'libtemplate/templatefunction.h')
-rw-r--r-- | libtemplate/templatefunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libtemplate/templatefunction.h b/libtemplate/templatefunction.h index f7af25c..59d6002 100644 --- a/libtemplate/templatefunction.h +++ b/libtemplate/templatefunction.h @@ -102,7 +102,10 @@ enum eOverflowType { }; class cTemplateFunction { +private: + static int nextId; protected: + int id; eFuncType type; bool debug; int containerX; //X of parent container @@ -185,6 +188,7 @@ public: //Parse parameters with dynamically set Tokens bool ParseParameters(void); //Getter Functions + int GetId(void) { return id; }; eFuncType GetType(void) { return type; }; bool DoDebug(void) { return debug; }; string GetParameter(eParamType type); |