el h / SimpleGUI

Fork of SimpleGUI by Duncan McIntyre

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FastFontRenderer.h Source File

FastFontRenderer.h

00001 #ifndef SIMPLEGUI_FAST_FONT_RENDERER_H
00002 #define SIMPLEGUI_FAST_FONT_RENDERER_H
00003 
00004 #include "FontRenderer.h"
00005 #include "FastFont.h"
00006 
00007 class FastFontRenderer : public FontRenderer
00008 {
00009 
00010 public:
00011 
00012     FastFontRenderer();
00013 
00014     virtual void putc(const char  c, GraphicsDisplay* display, Font* font);
00015     virtual void puts(const char* s, GraphicsDisplay* display, Font* font);
00016 //    virtual void setFont(Font* font);
00017 
00018 private:
00019     FastFont* _font;
00020 };
00021 
00022 #endif