ObjFW  Diff

Differences From Artifact [1ad010b630]:

To Artifact [e8b227f852]:


18
19
20
21
22
23
24
25

26
27
28
29

30
31
18
19
20
21
22
23
24

25
26
27
28

29
30
31







-
+



-
+


#import "OFObject.h"
#import "OFStream.h"
#import "OFXMLElement.h"

@interface LinkLibGenerator: OFObject
{
	OFXMLElement *_library;
	OFStream *_outputStream;
	OFStream *_impl;
}

- (instancetype)initWithLibrary: (OFXMLElement *)library
		   outputStream: (OFStream *)outputStream;
		 implementation: (OFStream *)impl;
- (void)generate;
@end