public
Description: XBMC iPhone Remote
Homepage: remote.collect3.com.au
Clone URL: git://github.com/djfumberger/xbmc-remote.git
xbmc-remote / Path.h
100644 18 lines (15 sloc) 0.322 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Path.h
// xbmcremote
//
// Created by David Fumberger on 4/11/08.
// Copyright 2008 collect3. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "PathItem.h";
 
@interface Path : NSObject {
NSMutableArray *items;
}
@property (nonatomic, retain) NSMutableArray *items;
- (void)addItem:(PathItem*)item;
@end