mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-17 13:05:48 +00:00
15 lines
280 B
Objective-C
15 lines
280 B
Objective-C
//
|
|
// CreateQueueResponse.h
|
|
//
|
|
// Created by Stefan Reitshamer on 9/16/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface CreateQueueResponse : NSObject <NSXMLParserDelegate> {
|
|
NSMutableString *currentStringBuffer;
|
|
NSURL *queueURL;
|
|
}
|
|
- (id)initWithData:(NSData *)theData;
|
|
- (NSURL *)queueURL;
|
|
@end
|