File: font.h

package info (click to toggle)
rafkill 1.2.2-3.3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,268 kB
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (23 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _paintown_font_h
#define _paintown_font_h

struct FONT;

class Font{
public:
	Font( FONT * f );
	Font( const Font & f );

	inline FONT * getInternalFont() const{
		return my_font;
	}
	
	const int textLength( const char * text );

	const int getHeight() const;

protected:
	FONT * my_font;
};

#endif