forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFSAirplane.h
36 lines (27 loc) · 984 Bytes
/
FSAirplane.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* FSAirplane.h Copyright (c) 1998-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import <Foundation/Foundation.h>
@interface FSAirplane : NSObject <NSCoding>
{
id ident;
id model;
id capacity;
id location;
}
////////////////////////////////// User methods ////////////////////////////////
+ (id) airplaneWithIdent:(id)theIdent model:(id)theModel capacity:(id)theCapacity location:(id)theLocation;
- (id) capacity;
- (void) setCapacity:(id)theCapacity;
- (id) ident;
- (void) setIdent:(id)theIdent;
- (id) location;
- (void) setLocation:(id)theLocation;
- (id) model;
- (void) setModel:(id)theModel;
////////////////////////////////// Programmer methods ////////////////////////////////
- (void)dealloc;
- (NSString *)description;
- (void)encodeWithCoder:(NSCoder *)aCoder;
- (id)initWithCoder:(NSCoder *)aDecoder;
- (id) initWithIdent:(id)theIdent model:(id)theModel capacity:(id)theCapacity location:(id)theLocation;
@end