#include <ExManagerFont.h>
Inheritance diagram for ExManagerFont:

Public Methods | |
| void | Reset (void) |
| void | Init (void) |
| void | WriteBitmapFont (std::string text, int PosX, int PosY, int CharSizeX, int CharSizeY, std::string Font) |
Static Public Methods | |
| ExManagerFont * | CreateSingleton (void) |
Private Methods | |
| ExManagerFont (void) | |
| ~ExManagerFont (void) | |
Static Private Attributes | |
| bool | m_flag = false |
| ExManagerFont * | m_instance = NULL |
|
|
Definition at line 42 of file ExManagerFont.cpp.
00043 {
00044 }
|
|
|
Definition at line 46 of file ExManagerFont.cpp.
00047 {
00048 }
|
|
|
Definition at line 28 of file ExManagerFont.cpp. References CreateSingleton(), Guard, m_flag, and m_instance. Referenced by CreateSingleton(), and main().
00028 {
00029 Guard(ExManagerFont* ExManagerFont::CreateSingleton(void))
00030 if(!m_flag)
00031 {
00032 m_flag = true; // We are creating the error log now, so set flag to true
00033 m_instance = new ExManagerFont; // Create the error log
00034 }else
00035 {
00036 std::cout<<"Error singleton already created"<<std::endl;
00037 }
00038 return m_instance;
00039 UnGuard
00040 }
|
|
|
Reimplemented from ExManagerObject< ExCFont >. Definition at line 54 of file ExManagerFont.cpp. References ExManagerObject< ExCFont >::Add(), ExManagerObject::Init(), and ExCObject::SetName(). Referenced by InitManager().
00055 {
00056 ExManagerObject<ExCFont>::Init();
00057 ExCFont Font;
00058 Font.SetName("FontTest");
00059 Add(Font);
00060 }
|
|
|
Reimplemented from ExManagerObject< ExCFont >. Definition at line 50 of file ExManagerFont.cpp.
00051 {
00052 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 62 of file ExManagerFont.cpp.
00063 {
00064 } |
|
|
Definition at line 25 of file ExManagerFont.cpp. Referenced by CreateSingleton(). |
|
|
Definition at line 26 of file ExManagerFont.cpp. Referenced by CreateSingleton(). |
1.3-rc1