-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerson.m
58 lines (41 loc) · 772 Bytes
/
Person.m
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Person.m
// BAC Calc
//
// Created by Luke Connors on 11/6/12.
//
//
#import "Person.h"
@implementation Person
-(id)initWithGender:(NSString *)gender personWeight:(NSNumber *)weight
{
self = [super init];
if (self) {
_gender = gender;
_weight = [NSNumber numberWithFloat: [weight floatValue]];
_matabRate = [NSNumber numberWithFloat:(0.015/60/60)];
_alarm = 0;
}
return self;
}
+(void)setGender:(NSString*)gender{
}
+(void)setAge:(NSNumber*)age{
}
+(void)setWeight:(NSNumber*)weight{
}
+(void)checkStats{
}
+(void)newSession{
}
+(void)deleteSession{
}
+(NSString*)getGender{
}
+(NSNumber*)getWeight{
}
+(NSNumber*)getAge{
}
+(Session*)getSession{
}
@end