APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/Child.h
Brent Marohnic c9adb63f6c Practice 1
2013-02-07 09:01:25 -05:00

22 lines
300 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>
@interface Child : NSObject
{
int intChild;
float fltChild;
BOOL blnChild;
}
-(NSString*)showChild;
@end