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