Usermode/libc #6 Fix string.h functions, add some more unit tests
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / draw_text.cpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang)
4  *
5  * draw_text.cpp
6  * - Text Drawing
7  *
8  * Handles font selection and drawing of text to windows
9  */
10 #include <draw_text.hpp>
11 #include <axwin4/definitions.h>
12
13 // === CODE ===
14 namespace AxWin {
15
16 CFont::CFont():
17         
18 {
19 }
20
21 CFont::CFont(const char *Path):
22         
23 {
24 }
25
26 /**
27  * \param Text height in pixels (not in points)
28  */
29 void CFont::Render(CSurface& dest, const CRect& rect, const ::std::string& text, unsigned int Size) const
30 {
31
32 }
33
34 };      // namespace AxWin
35

UCC git Repository :: git.ucc.asn.au