2010-02-14 10:48:10 +00:00
|
|
|
/** Declaration of extension methods for base additions
|
2008-12-07 06:02:02 +00:00
|
|
|
|
2010-02-14 10:48:10 +00:00
|
|
|
Copyright (C) 2003-2010 Free Software Foundation, Inc.
|
2008-12-07 06:02:02 +00:00
|
|
|
|
|
|
|
Written by: Richard Frith-Macdonald <rfm@gnu.org>
|
2010-02-14 10:48:10 +00:00
|
|
|
and: Adam Fedor <fedor@gnu.org>
|
2008-12-07 06:02:02 +00:00
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02111 USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2010-02-14 10:48:10 +00:00
|
|
|
#ifndef INCLUDED_NSFileHandle_GNUstepBase_h
|
|
|
|
#define INCLUDED_NSFileHandle_GNUstepBase_h
|
|
|
|
|
|
|
|
#import <GNUstepBase/GSVersionMacros.h>
|
|
|
|
#import <Foundation/NSFileHandle.h>
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if OS_API_VERSION(GS_API_NONE,GS_API_LATEST)
|
|
|
|
|
|
|
|
@interface NSFileHandle(GNUstepBase)
|
|
|
|
+ (id) fileHandleAsServerAtAddress: (NSString*)address
|
|
|
|
service: (NSString*)service
|
|
|
|
protocol: (NSString*)protocol;
|
|
|
|
- (NSString*) socketAddress;
|
2008-12-07 06:02:02 +00:00
|
|
|
@end
|
|
|
|
|
2010-02-14 10:48:10 +00:00
|
|
|
#endif /* OS_API_VERSION */
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* INCLUDED_NSFileHandle_GNUstepBase_h */
|
2008-12-07 06:02:02 +00:00
|
|
|
|