Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / platform / DARWIN / AFSPreference / CellIp.h
1 //
2 // CellIp.h
3 // AFSCommander
4 //
5 // Created by Claudio Bisegni on 14/06/07.
6 // Copyright 2007 INFN - National Institute of Nuclear Physics. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11
12 @interface CellIp : NSObject {
13 NSString *ip;
14 NSString *ipComment;
15 }
16 -(id)init;
17 -(void)dealloc;
18 -(void)setCellIp:(NSString*)newip;
19 -(NSString*) getCellIp;
20 -(void)setCellComment:(NSString*)newcomment;
21 -(NSString*) getCellComment;
22 -(NSString*) description;
23 @end