mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-14 12:35:47 +00:00
15 lines
286 B
Objective-C
15 lines
286 B
Objective-C
//
|
|
// CreateTopicResponse.h
|
|
//
|
|
// Created by Stefan Reitshamer on 9/16/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface CreateTopicResponse : NSObject <NSXMLParserDelegate> {
|
|
NSString *topicArn;
|
|
NSMutableString *currentStringBuffer;
|
|
}
|
|
- (id)initWithData:(NSData *)theData;
|
|
- (NSString *)topicArn;
|
|
@end
|