mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-19 13:25:46 +00:00
18 lines
363 B
Objective-C
18 lines
363 B
Objective-C
//
|
|
// GetQueueAttributesResponse.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 9/17/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface GetQueueAttributesResponse : NSObject <NSXMLParserDelegate> {
|
|
BOOL inAttribute;
|
|
NSMutableString *currentStringBuffer;
|
|
NSString *lastAttributeName;
|
|
NSString *queueArn;
|
|
}
|
|
- (id)initWithData:(NSData *)theData;
|
|
- (NSString *)queueArn;
|
|
@end
|