mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix missing declarations
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17942 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ec9d52dff8
commit
29e0a39d46
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Oct 20 16:50:00 2003 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/Additions/GNUstepBase/GSMime.h: Fix missing copying method
|
||||
declararations.
|
||||
|
||||
Sat Oct 18 07:10:00 2003 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/Unicode.m: Allow GNUSTEP_STRING_ENCODING to give
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
- (void) setAtEnd: (BOOL)flag;
|
||||
@end
|
||||
|
||||
@interface GSMimeHeader : NSObject
|
||||
@interface GSMimeHeader : NSObject <NSCopying>
|
||||
{
|
||||
NSString *name;
|
||||
NSString *value;
|
||||
|
@ -67,6 +67,7 @@
|
|||
}
|
||||
+ (NSString*) makeQuoted: (NSString*)v always: (BOOL)flag;
|
||||
+ (NSString*) makeToken: (NSString*)t;
|
||||
- (id) copyWithZone: (NSZone*)z;
|
||||
- (id) initWithName: (NSString*)n
|
||||
value: (NSString*)v;
|
||||
- (id) initWithName: (NSString*)n
|
||||
|
@ -88,7 +89,7 @@
|
|||
@end
|
||||
|
||||
|
||||
@interface GSMimeDocument : NSObject
|
||||
@interface GSMimeDocument : NSObject <NSCopying>
|
||||
{
|
||||
NSMutableArray *headers;
|
||||
id content;
|
||||
|
@ -110,6 +111,7 @@
|
|||
- (id) content;
|
||||
- (id) contentByID: (NSString*)key;
|
||||
- (id) contentByName: (NSString*)key;
|
||||
- (id) copyWithZone: (NSZone*)z;
|
||||
- (NSString*) contentFile;
|
||||
- (NSString*) contentID;
|
||||
- (NSString*) contentName;
|
||||
|
|
Loading…
Reference in a new issue