aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExporter.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-10-07 00:11:40 +0000
committerstuconnolly <stuart02@gmail.com>2009-10-07 00:11:40 +0000
commit6269e47fcf89cf3fb6d01184064dface1d163c05 (patch)
tree0f1ad826305fc2328fa49f0e5b34a17c52d883d3 /Source/SPExporter.h
parent5ec0349424ff8299a25bbf5a538865e752cd9215 (diff)
downloadsequelpro-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/SPExporter.h')
-rw-r--r--Source/SPExporter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPExporter.h b/Source/SPExporter.h
index 685fc597..1f52e5db 100644
--- a/Source/SPExporter.h
+++ b/Source/SPExporter.h
@@ -56,6 +56,7 @@
BOOL exportProcessIsRunning;
+ NSString *exportData;
NSStringEncoding exportOutputEncoding;
}
@@ -65,6 +66,7 @@
@property (readwrite, assign) BOOL exportProcessIsRunning;
+@property (readwrite, retain) NSString *exportData;
@property (readwrite, assign) NSStringEncoding exportOutputEncoding;
- (id)initWithDelegate:(id)exportDelegate;