mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-09 11:45:50 +00:00
19 lines
491 B
Objective-C
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
|