diff options
Diffstat (limited to 'Src/Wasabi/api/font/skinfont.h')
-rw-r--r-- | Src/Wasabi/api/font/skinfont.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Src/Wasabi/api/font/skinfont.h b/Src/Wasabi/api/font/skinfont.h new file mode 100644 index 00000000..4780c136 --- /dev/null +++ b/Src/Wasabi/api/font/skinfont.h @@ -0,0 +1,17 @@ +#ifndef _SKINFONT_H +#define _SKINFONT_H + +#include <api/skin/xmlobject.h> + +class SkinFont : public XmlObjectI +{ +public: + SkinFont(); + ~SkinFont(); + void installFont(const wchar_t *filename, const wchar_t *path); + virtual int setXmlOption(const wchar_t *name, const wchar_t *val); +private: + StringW tempFn; +}; + +#endif |