| Revision 190,
641 bytes
checked in by gbooker, 6 years ago
(diff) |
|
Two things:
- Changed the import mechanism so that a common importer will use an import item to do the work.
- Added a third item to the menu to change the predicate filter.
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireTVShowDataMenu.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Graham Booker on 6/30/07. |
|---|
| 6 | // Copyright 2007 __www.nanopi.net__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "SapphireImporterDataMenu.h" |
|---|
| 10 | #include <regex.h> |
|---|
| 11 | |
|---|
| 12 | @interface SapphireTVShowImporter : NSObject <SapphireImporter>{ |
|---|
| 13 | SapphireImporterDataMenu *dataMenu; |
|---|
| 14 | //Note: currentData is not retained |
|---|
| 15 | SapphireFileMetaData *currentData; |
|---|
| 16 | NSMutableDictionary *showTranslations; |
|---|
| 17 | NSMutableDictionary *showInfo; |
|---|
| 18 | NSString *settingsPath; |
|---|
| 19 | regex_t letterMarking; |
|---|
| 20 | regex_t seasonByEpisode; |
|---|
| 21 | regex_t seasonEpisodeTriple; |
|---|
| 22 | } |
|---|
| 23 | |
|---|
| 24 | - (id) initWithSavedSetting:(NSString *)path; |
|---|
| 25 | |
|---|
| 26 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.