arq_restore/plist/RealNode.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

18 lines
377 B
Objective-C

//
// RealNode.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 RealNode : NSObject <PListNode> {
double value;
}
- (id)initWithDouble:(double)value;
- (id)initWithString:(NSString *)theValue error:(NSError **)error;
- (double)doubleValue;
@end