FONTAINE  1.0
FontLibrary.h
Go to the documentation of this file.
1 //
2 // The Fontaine Font Analysis Project
3 //
4 // Copyright (c) 2009 by Edward H. Trager
5 // All Rights Reserved
6 //
7 // Released under the GNU GPL version 2.0 or later.
8 //
9 
10 
11 #ifndef FONT_LIBRARY_INCLUDED
12 #define FONT_LIBRARY_INCLUDED
13 
14 #include <ft2build.h>
15 #include FT_FREETYPE_H
16 
18 
19 private:
20 
21  FT_Library _library;
22 
23 public:
24 
25  FontLibrary();
26  ~FontLibrary();
27 
28  FT_Library get();
29 
30 };
31 
32 #endif