diff options
Diffstat (limited to 'glcdskin/config.h')
-rw-r--r-- | glcdskin/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/glcdskin/config.h b/glcdskin/config.h index ce68513..eede1cc 100644 --- a/glcdskin/config.h +++ b/glcdskin/config.h @@ -17,12 +17,15 @@ #include <stdint.h> +#include "../glcddrivers/driver.h" + namespace GLCD { class cType; class cFont; struct tSkinToken; +class cDriver; class cSkinConfig { @@ -37,6 +40,7 @@ public: virtual int GetTokenId(const std::string & Name); virtual int GetTabPosition(int Index, int MaxWidth, const cFont & Font); virtual uint64_t Now(void); + virtual cDriver * GetDriver(void) const { return NULL; } }; } // end of namespace |