OpenAFS
OpenAFS distributed network file system
|
00001 // 00002 // CellIp.h 00003 // AFSCommander 00004 // 00005 // Created by Claudio Bisegni on 14/06/07. 00006 // Copyright 2007 INFN - National Institute of Nuclear Physics. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 00011 00012 @interface CellIp : NSObject { 00013 NSString *ip; 00014 NSString *ipComment; 00015 } 00016 -(id)init; 00017 -(void)dealloc; 00018 -(void)setCellIp:(NSString*)newip; 00019 -(NSString*) getCellIp; 00020 -(void)setCellComment:(NSString*)newcomment; 00021 -(NSString*) getCellComment; 00022 -(NSString*) description; 00023 @end