APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/ChildFactory.h
2013-02-07 22:52:03 -05:00

17 lines
277 B
Objective-C

//
// ChildFactory.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/7/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Child.h"
@interface ChildFactory : NSObject
-(Child*)GetChild:(int)childType;
@end