Files
SDLPongCPP/.svn/pristine/a1/a10f1b92e1dbc9aaf635557a418d786fb06eb2b0.svn-base
T
2018-06-25 21:48:45 -04:00

28 lines
623 B
Plaintext

#ifndef _CFONTHOLDER_HPP_
#define _CFONTHOLDER_HPP_
/*** SDL Header Files ***/
#include <SDL.h>
#include <SDL_ttf.h>
/*** DLL Header File ***/
#include "dllExport.h"
namespace TextTypeHelpers {
class EXPORT_FROM_MYDLL cFontHolder
{
public:
cFontHolder( TTF_Font* font, const unsigned long int size );
~cFontHolder();
///Sets
///Gets
TTF_Font* getFont() const;
const unsigned long int getSize() const;
private:
TTF_Font* mp_font;// = nullptr
unsigned long int m_size;// = 16
};/// END CLASS DEFINITION cFontHolder
}/// END NAMESPACE DEFINITION TextTypeHelpers
#endif/// END IFNDEF _CFONTHOLDER_HPP_