arq_restore/plist/BooleanNode.h
Stefan Reitshamer cbe20c007e Merged in many changes from Arq mainline development.
(Sorry for the lame commit comment).
2010-08-19 13:25:23 -04:00

17 lines
312 B
Objective-C

//
// BooleanNode.h
// Backup
//
// Created by Stefan Reitshamer on 4/13/09.
// Copyright 2009 PhotoMinds LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PListNode.h"
@interface BooleanNode : NSObject <PListNode> {
BOOL value;
}
- (id)initWithBoolean:(BOOL)value;
- (BOOL)booleanValue;
@end