5by5Browser/5by5Browser/FiveByFive.h
2011-12-17 16:49:40 -08:00

21 lines
409 B
Objective-C

//
// FiveByFive.h
// 5by5Browser
//
// Created by Sami Samhuri on 11-12-17.
// Copyright (c) 2011 Guru Logic. All rights reserved.
//
#import <Foundation/Foundation.h>
@class Show;
@interface FiveByFive : NSObject
@property (nonatomic, retain) NSString *baseURL;
@property (nonatomic, retain) NSMutableArray *shows;
- (id) initWithBaseURL: (NSString *)baseURL;
- (void) addShow: (Show *)show;
@end