aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExporter.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-09-16 14:04:33 +0000
committerstuconnolly <stuart02@gmail.com>2009-09-16 14:04:33 +0000
commit61541a2b48b7f475394e7301794bca514f43ddf1 (patch)
treea6eb748eb23c15bac8df359c610ca087273f0102 /Source/SPExporter.h
parenta4cbc850448f901a5320b9b9cfac2f8d28bafa2f (diff)
downloadsequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.tar.gz
sequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.tar.bz2
sequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.zip
Some more data exporter redesign changes I've been meaning to commit.
Diffstat (limited to 'Source/SPExporter.h')
-rw-r--r--Source/SPExporter.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/Source/SPExporter.h b/Source/SPExporter.h
index 9b0f80fd..d380f94e 100644
--- a/Source/SPExporter.h
+++ b/Source/SPExporter.h
@@ -52,14 +52,24 @@
@end
-@interface SPExporter : NSObject
+@interface SPExporter : NSOperation
{
id delegate;
+
+ double exportProgressValue;
- double progressValue;
+ BOOL exportProcessIsRunning;
+ BOOL exportProcessShouldExit;
+
+ NSStringEncoding exportOutputEncoding;
}
@property (readwrite, assign) id delegate;
-@property (readwrite, assign) double progressValue;
+@property (readwrite, assign) double exportProgressValue;
+
+@property (readwrite, assign) BOOL exportProcessIsRunning;
+@property (readwrite, assign) BOOL exportProcessShouldExit;
+
+@property (readwrite, assign) NSStringEncoding exportOutputEncoding;
@end