My favorites | Sign in
Project Home Downloads Wiki Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 1 attachment: Client.m (313 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "Client.h"
@implementation Client
-(void) print{
NSLog(@" ... Code : %i Name : %@",code,name );
}
-(void) setCode:(int) _code{
code = _code;
}
-(int) getCode{
return code;
}
-(void) setName:(NSString*) _name{
name = _name;
}
-(NSString*) getName{
return name;
}

@end
Powered by Google Project Hosting