]> err.no Git - sope/blob - sope-core/NGExtensions/NGExtensions.m
Drop apache 1 build-dependency
[sope] / sope-core / NGExtensions / NGExtensions.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "NGExtensions.h"
23 #include "NGBase64Coding.h"
24 #include "NGBaseTypes.h"
25 #include "NGBitSet.h"
26 #include "NGHashMap.h"
27 #include "NGMemoryAllocation.h"
28 #include "NGStack.h"
29 #include "NGBundleManager.h"
30 #include "NGQuotedPrintableCoding.h"
31 #include "NSArray+enumerator.h"
32 #include "NSData+misc.h"
33 #include "NSException+misc.h"
34 #include "NSMethodSignature+misc.h"
35 #include "NSObject+Values.h"
36 #include "NSSet+enumerator.h"
37 #include "NSString+Formatting.h"
38 #include "NSString+misc.h"
39 #include "NSDictionary+misc.h"
40 #include "NSCalendarDate+misc.h"
41
42 @implementation NGExtensions
43
44 /* statically link Objective-C categories */
45
46 extern void __link_NSProcessInfo_misc(void);
47 extern void __link_NSCalendarDate_misc(void);
48 extern void __link_EODataSource_NGExtensions(void);
49 extern void __link_NSString_Formatting(void);
50 extern void __link_NGBase64Coding(void);
51 extern void __link_NGExtensions_NSObjectValues(void);
52
53 - (void)_staticLinkClasses {
54    __link_NSProcessInfo_misc();
55    __link_NSCalendarDate_misc();
56    __link_EODataSource_NGExtensions();
57    __link_NSString_Formatting();
58    __link_NGBase64Coding();
59    __link_NGExtensions_NSObjectValues();
60 }
61
62 @end /* NGExtensions */