diff options
author | stuconnolly <stuart02@gmail.com> | 2009-10-06 00:44:48 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-10-06 00:44:48 +0000 |
commit | 27eba105aef0a612e5a91af02a0b87b99b06ab78 (patch) | |
tree | c7324f1156d602cb798a4d4ae8ada3b4907f5bcf /Source/SPCSVExporter.h | |
parent | 29cfd02f7828d92136fce32e0cb888e9dd9fd2ba (diff) | |
download | sequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.tar.gz sequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.tar.bz2 sequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.zip |
More export redesign work. CSV data generation is currently working using the old non-streaming code, but does not yet write to any files. Please note that this is still very much a work in progress.
Diffstat (limited to 'Source/SPCSVExporter.h')
-rw-r--r-- | Source/SPCSVExporter.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/SPCSVExporter.h b/Source/SPCSVExporter.h index 51569838..95f30b46 100644 --- a/Source/SPCSVExporter.h +++ b/Source/SPCSVExporter.h @@ -29,10 +29,7 @@ #import "SPExporter.h" @interface SPCSVExporter : SPExporter -{ - // CSV file - NSFileHandle *csvFileHandle; - +{ // CSV data NSArray *csvDataArray; MCPResult *csvDataResult; @@ -47,8 +44,6 @@ NSArray *csvTableColumnNumericStatus; } -@property (readwrite, retain) NSFileHandle *csvFileHandle; - @property (readwrite, retain) NSArray *csvDataArray; @property (readwrite, retain) MCPResult *csvDataResult; |