APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/Child.h
Brent Marohnic 8d1db02fb8 Final Commit
2013-02-07 23:46:04 -05:00

37 lines
549 B
Objective-C

//
// Child.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/7/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef enum
{
CHILDTYPE_GOOD=0,
CHILDTYPE_BAD,
CHILDTYPE_PERFECT,
CHILDTYPE_ROTTEN
} EChildType;
@interface Child : NSObject
{
@public
NSString *strName;
int intChild;
EChildType childType;
}
-(id)initWithDetails:(int)inpIntChild inpStrName:(NSString*)inpStrName;
-(void)showName;
-(NSString*)showChild;
@property int intChild;
@end