Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git] / Onyx2D / O2PDFFont.h
blob951c01a3cd453f508d7642f41e6282f1c637b751
1 #import <Onyx2D/O2PDFObject.h>
3 @class O2PDFDictionary, O2Encoding, O2PDFCharWidths, O2Font;
5 @interface O2PDFFont : O2PDFObject {
6 O2PDFDictionary *_info; // If we get rid of this, make sure to copy/retain any values in it
7 const char *_baseFont;
8 O2Font *_resourceFont;
9 O2Font *_graphicsFont;
10 O2Encoding *_encoding;
11 O2PDFCharWidths *_pdfCharWidths;
14 + (O2PDFFont *)createWithPDFDictionary:(O2PDFDictionary *)info;
16 - (O2Encoding *)encoding;
17 - (O2PDFCharWidths *)pdfCharWidths;
19 - (O2Font *)graphicsFont;
21 @end