replaced unicode literal with hex escape sequence so it loads with the regular ascii...
[TestXSLT.git] / XSL_FO_Renderer.m
1 //
2 //  XSL_FO_Renderer.m
3 //  TestXSLT
4 //
5 //  Created by Marc Liyanage on Tue Aug 19 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "XSL_FO_Renderer.h"
10
11
12 @implementation XSL_FO_Renderer
13
14
15 - (NSData *)render:(NSData *)foData {
16
17         FOPWrapper *fw = (FOPWrapper *)[[NSClassFromString(@"FOPWrapper") alloc] init];
18
19         NSData *resultData = [fw convert:foData];
20         // fixme: autorelease on resultData? creation on Java side?
21         
22         [fw release];
23         
24         return resultData;
25 }
26
27
28
29 @end