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

20 lines
449 B
Objective-C

//
// IntegerNode.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 IntegerNode : NSObject <PListNode> {
long long value;
}
- (id)initWithInt:(int)theValue;
- (id)initWithString:(NSString *)theValue error:(NSError **)error;
- (id)initWithLongLong:(long long)theValue;
- (int)intValue;
- (long long)longlongValue;
@end