aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPXMLExporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPXMLExporter.h')
-rw-r--r--Source/SPXMLExporter.h35
1 files changed, 14 insertions, 21 deletions
diff --git a/Source/SPXMLExporter.h b/Source/SPXMLExporter.h
index b74c76bf..4e373e8d 100644
--- a/Source/SPXMLExporter.h
+++ b/Source/SPXMLExporter.h
@@ -35,41 +35,34 @@
*/
@interface SPXMLExporter : SPExporter
{
- /**
- * Exporter delegate
- */
NSObject <SPXMLExporterProtocol> *delegate;
- /**
- * Data array
- */
NSArray *xmlDataArray;
-
- /**
- * Table name
- */
+
NSString *xmlTableName;
-
- /**
- * XML NULL string
- */
NSString *xmlNULLString;
}
+/**
+ * @property delegate Exporter delegate
+ */
@property(readwrite, assign) NSObject *delegate;
+/**
+ * @property xmlDataArray Data array
+ */
@property(readwrite, retain) NSArray *xmlDataArray;
-@property(readwrite, retain) NSString *xmlTableName;
-@property(readwrite, retain) NSString *xmlNULLString;
+/**
+ * @property xmlTableName Table name
+ */
+@property(readwrite, retain) NSString *xmlTableName;
/**
- * Initialise an instance of SPXMLExporter using the supplied delegate.
- *
- * @param exportDelegate The exporter delegate
- *
- * @return The initialised instance
+ * @property xmlNULLString XML NULL string
*/
+@property(readwrite, retain) NSString *xmlNULLString;
+
- (id)initWithDelegate:(NSObject *)exportDelegate;
@end