arq_restore/plist/StringNode.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
328 B
Objective-C

//
// StringNode.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 StringNode : NSObject <PListNode> {
NSString *value;
}
- (id)initWithString:(NSString *)theValue;
- (NSString *)stringValue;
@end