ResKnife/NuTemplateEditor/ElementDATE.h
Nicholas Shanks fee2452785 Allow the rebase of foreign repositories onto master.
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
2014-02-20 00:53:03 +00:00

13 lines
219 B
Objective-C

#import "Element.h"
@interface ElementDATE : Element
{
// seconds since 1 Jan 1904
UInt32 value;
}
- (UInt32)value;
- (void)setValue:(UInt32)v;
- (NSString *)stringValue;
- (void)setStringValue:(NSString *)str;
@end