ObjFW  Check-in [fc35094306]

Overview
Comment:Add reference for static linking.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: fc350943063aecbf3fd90d6ac9944662197172c30d604835b056f58838dac349
User & Date: js on 2009-04-25 18:59:24
Other Links: manifest | tags
Context
2009-04-26
12:31
Rename getIterator -> iterator. check-in: 8d10e738d1 user: js tags: trunk
2009-04-25
18:59
Add reference for static linking. check-in: fc35094306 user: js tags: trunk
14:28
Separate C and ObjC checks. check-in: a632386b7f user: js tags: trunk
Changes

Modified src/OFDictionary.m from [4ec6bb16d4] to [a124a729d9].

10
11
12
13
14
15
16

17
18



19
20
21
22
23
24
25
 */

#import "config.h"

#include <string.h>

#import "OFDictionary.h"

#import "OFExceptions.h"




@implementation OFDictionary
+ dictionary;
{
	return [[[OFDictionary alloc] init] autorelease];
}

+ dictionaryWithHashSize: (int)hashsize







>


>
>
>







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 */

#import "config.h"

#include <string.h>

#import "OFDictionary.h"
#import "OFIterator.h"
#import "OFExceptions.h"

/* Reference for static linking */
void _reference_to_OFIterator_in_OFDictionary() { [OFIterator class]; }

@implementation OFDictionary
+ dictionary;
{
	return [[[OFDictionary alloc] init] autorelease];
}

+ dictionaryWithHashSize: (int)hashsize