]> err.no Git - sope/blob - sope-core/NGExtensions/NGExtensions/NSString+Ext.h
overhauled logging for NGExtensions which NGObjWeb uses
[sope] / sope-core / NGExtensions / NGExtensions / NSString+Ext.h
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo 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   OGo 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 OGo; 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 #ifndef __NGExtensions_NSString_Ext_H__
23 #define __NGExtensions_NSString_Ext_H__
24
25 #import <Foundation/NSString.h>
26
27 /* specific to gstep-base, supported in libFoundation */
28
29 #if !LIB_FOUNDATION_LIBRARY && !GNUSTEP_BASE_LIBRARY
30
31 @interface NSString(GSAdditions)
32
33 - (NSString *)stringWithoutPrefix:(NSString *)_prefix;
34 - (NSString *)stringWithoutSuffix:(NSString *)_suffix;
35
36 - (NSString *)stringByReplacingString:(NSString *)_orignal
37   withString:(NSString *)_replacement;
38
39 - (NSString *)stringByTrimmingLeadSpaces;
40 - (NSString *)stringByTrimmingTailSpaces;
41 - (NSString *)stringByTrimmingSpaces;
42
43 /* the following are not available in gstep-base 1.6 ? */
44 - (NSString *)stringByTrimmingLeadWhiteSpaces;
45 - (NSString *)stringByTrimmingTailWhiteSpaces;
46 - (NSString *)stringByTrimmingWhiteSpaces;
47
48 @end /* NSString(GSAdditions) */
49
50 @interface NSMutableString(GNUstepCompatibility)
51
52 - (void)trimLeadSpaces;
53 - (void)trimTailSpaces;
54 - (void)trimSpaces;
55
56 @end /* NSMutableString(GNUstepCompatibility) */
57
58 #endif
59
60 /* specific to libFoundation */
61
62 #if !LIB_FOUNDATION_LIBRARY
63
64 @interface NSString(lfNSURLUtilities)
65
66 - (BOOL)isAbsoluteURL;
67 - (NSString *)urlScheme;
68
69 @end
70
71 #endif
72
73 #endif /* __NGExtensions_NSString_Ext_H__ */