| Revision 305,
982 bytes
checked in by gbooker, 5 years ago
(diff) |
|
Changed Actor to Cast, sorted in a better location and no gender issues
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireMovieDirectory.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Patrick Merrill on 10/22/07. |
|---|
| 6 | // Copyright 2007 www.nanopi.net. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "SapphireVirtualDirectory.h" |
|---|
| 10 | |
|---|
| 11 | @class SapphireMovieCategoryDirectory, SapphireMovieCastDirectory, SapphireMovieDirectorDirectory, SapphireMovieGenreDirectory; |
|---|
| 12 | |
|---|
| 13 | @interface SapphireMovieDirectory : SapphireVirtualDirectoryOfDirectories { |
|---|
| 14 | SapphireMovieCategoryDirectory *allMovies; |
|---|
| 15 | SapphireMovieCastDirectory *cast; |
|---|
| 16 | SapphireMovieDirectorDirectory *directors; |
|---|
| 17 | SapphireMovieGenreDirectory *genres; |
|---|
| 18 | } |
|---|
| 19 | - (id)initWithCollection:(SapphireMetaDataCollection *)myCollection; |
|---|
| 20 | @end |
|---|
| 21 | |
|---|
| 22 | @interface SapphireMovieCastDirectory : SapphireVirtualDirectoryOfDirectories { |
|---|
| 23 | } |
|---|
| 24 | @end |
|---|
| 25 | |
|---|
| 26 | @interface SapphireMovieDirectorDirectory : SapphireVirtualDirectoryOfDirectories { |
|---|
| 27 | } |
|---|
| 28 | @end |
|---|
| 29 | |
|---|
| 30 | @interface SapphireMovieGenreDirectory : SapphireVirtualDirectoryOfDirectories { |
|---|
| 31 | } |
|---|
| 32 | @end |
|---|
| 33 | |
|---|
| 34 | @interface SapphireMovieCategoryDirectory : SapphireVirtualDirectory { |
|---|
| 35 | } |
|---|
| 36 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.