| Revision 203,
564 bytes
checked in by gbooker, 6 years ago
(diff) |
- Reverted some of [202]; it just wasn't the best way to do it and would require duplicating a lot of code.
- Started the tv directory, which will be much nicer when it is done (no more symlinks!).
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireTVDirectory.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Graham Booker on 9/5/07. |
|---|
| 6 | // Copyright 2007 www.nanopi.net. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "SapphireMetaData.h" |
|---|
| 10 | |
|---|
| 11 | @interface SapphireTVBaseDirectory : SapphireDirectoryMetaData { |
|---|
| 12 | NSMutableDictionary *directory; |
|---|
| 13 | NSTimer *reloadTimer; |
|---|
| 14 | } |
|---|
| 15 | - (void)processFile:(SapphireFileMetaData *)file; |
|---|
| 16 | @end |
|---|
| 17 | |
|---|
| 18 | @interface SapphireTVDirectory : SapphireTVBaseDirectory { |
|---|
| 19 | } |
|---|
| 20 | @end |
|---|
| 21 | |
|---|
| 22 | @interface SapphireShowDirectory : SapphireTVBaseDirectory { |
|---|
| 23 | } |
|---|
| 24 | @end |
|---|
| 25 | |
|---|
| 26 | @interface SapphireSeasonDirectory : SapphireTVBaseDirectory { |
|---|
| 27 | } |
|---|
| 28 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.