glyph( char * filename, char * unicode_c_str )
	{
		std::string fname( filename );
		std::string unicode_s( unicode_c_str );
		this->file = ttf_file( fname );
		init( unicode_s );
	}
Exemplo n.º 2
0
	glyph( const char * filename, const char * unicode_c_str )
	{
		this->file = ttf_file( std::string(filename) );
		init( std::string(unicode_c_str) );
	}