diff options
Diffstat (limited to 'Source/TableDump.h')
-rw-r--r-- | Source/TableDump.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/TableDump.h b/Source/TableDump.h index 7e1dc5cc..ebc686b2 100644 --- a/Source/TableDump.h +++ b/Source/TableDump.h @@ -27,6 +27,13 @@ #import <Cocoa/Cocoa.h> #import <MCPKit/MCPKit.h> +typedef enum _SPExportModes { + SPExportingSQL = 0, + SPExportingCSV = 1, + SPExportingXML = 2, + SPExportingDOT = 3 +} SPExportMode; + @interface TableDump : NSObject { IBOutlet id tableDocumentInstance; @@ -103,6 +110,7 @@ NSMutableArray *fieldMappingArray; NSMutableArray *fieldMappingButtonOptions; NSInteger fieldMappingCurrentRow; + NSUInteger exportMode; NSUserDefaults *prefs; BOOL progressCancelled; |