diff options
| author | mrwastl <mrwastl@users.sourceforge.net> | 2011-05-01 22:22:32 +0200 |
|---|---|---|
| committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-05-01 22:22:32 +0200 |
| commit | 46e597df44402086edd010b69702c2de52b75fc8 (patch) | |
| tree | fa9528f19f951b765b071c239b09547cf69bd169 /glcdskin/config.h | |
| parent | 57729cf285b058d192a60bd7fce1b2d29bdd9650 (diff) | |
| download | graphlcd-base-46e597df44402086edd010b69702c2de52b75fc8.tar.gz graphlcd-base-46e597df44402086edd010b69702c2de52b75fc8.tar.bz2 | |
initial upload to branch 'touchcol'. see file 'HISTORY' for changes
Diffstat (limited to 'glcdskin/config.h')
| -rw-r--r-- | glcdskin/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/glcdskin/config.h b/glcdskin/config.h index f6c8af9..eede1cc 100644 --- a/glcdskin/config.h +++ b/glcdskin/config.h @@ -15,6 +15,9 @@ #include <string> +#include <stdint.h> + +#include "../glcddrivers/driver.h" namespace GLCD { @@ -22,6 +25,7 @@ namespace GLCD class cType; class cFont; struct tSkinToken; +class cDriver; class cSkinConfig { @@ -35,6 +39,8 @@ public: virtual cType GetToken(const tSkinToken & Token); 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 |
