mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-27 15:07:44 +00:00
16 lines
299 B
Objective-C
16 lines
299 B
Objective-C
//
|
|
// ListTopicsResponse.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 9/29/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface ListTopicsResponse : NSObject <NSXMLParserDelegate> {
|
|
NSMutableArray *topicArns;
|
|
NSMutableString *currentStringBuffer;
|
|
}
|
|
- (id)initWithData:(NSData *)theData;
|
|
- (NSArray *)topicArns;
|
|
@end
|