diff options
author | stuconnolly <stuart02@gmail.com> | 2009-10-07 00:11:40 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-10-07 00:11:40 +0000 |
commit | 6269e47fcf89cf3fb6d01184064dface1d163c05 (patch) | |
tree | 0f1ad826305fc2328fa49f0e5b34a17c52d883d3 /Source/SPExportController.h | |
parent | 5ec0349424ff8299a25bbf5a538865e752cd9215 (diff) | |
download | sequelpro-6269e47fcf89cf3fb6d01184064dface1d163c05.tar.gz sequelpro-6269e47fcf89cf3fb6d01184064dface1d163c05.tar.bz2 sequelpro-6269e47fcf89cf3fb6d01184064dface1d163c05.zip |
More export redesign work. Note that the current implementation has a major flaw in that exporter instances (NSOperation subclasses) are not reusable and so we have to create a new instance for every 'chunk' of data we want to process.
Diffstat (limited to 'Source/SPExportController.h')
-rw-r--r-- | Source/SPExportController.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/SPExportController.h b/Source/SPExportController.h index 645ade0a..eec8ce63 100644 --- a/Source/SPExportController.h +++ b/Source/SPExportController.h @@ -105,10 +105,16 @@ typedef NSUInteger SPExportSource; IBOutlet id tokenNameTokensField; IBOutlet id exampleNameLabel; - // Local variables + // Cancellation flag BOOL exportCancelled; + + // Current database's tables NSMutableArray *tables; + + // Database connection MCPConnection *connection; + + // Concurrent operation queue NSOperationQueue *operationQueue; } |