arq_restore/cocoastack/s3/LifecycleConfiguration.h
2014-07-28 14:20:07 -04:00

19 lines
491 B
Objective-C

//
// LifecycleConfiguration.h
// Arq
//
// Created by Stefan Reitshamer on 2/21/14.
// Copyright (c) 2014 Stefan Reitshamer. All rights reserved.
//
@interface LifecycleConfiguration : NSObject <NSXMLParserDelegate> {
NSMutableArray *elementNames;
NSMutableString *currentStringBuffer;
NSMutableArray *ruleIds;
BOOL errorOccurred;
NSError *myError;
}
- (id)initWithData:(NSData *)theData error:(NSError **)error;
- (BOOL)containsRuleWithId:(NSString *)theId;
@end