diff options
Diffstat (limited to 'Source/SPExporter.h')
-rw-r--r-- | Source/SPExporter.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Source/SPExporter.h b/Source/SPExporter.h index bf405f58..70feb915 100644 --- a/Source/SPExporter.h +++ b/Source/SPExporter.h @@ -42,8 +42,22 @@ * used within a separate thread can be reclaimed immediately after the thread completes its cycle and it's * autorelease pool is released). */ + +@interface NSObject (SPExporterDelegate) + +- (void)exportProcessDidStart:(id)exporter; +- (void)exportProcessDidEnd:(id)exporter; + +@end + @interface SPExporter : NSObject +{ + id delegate; + + double progressValue; +} -// Implement functionality common to all exporters here +@property (readwrite, assign) id delegate; +@property (readwrite, assign) double progressValue; @end |