CatNiP -test sprint-4-interim
catnip
|
00001 // 00002 // LocalScoreData.h 00003 // CatNiP 00004 // 00005 // Created by Simo M Linkola, tkol on 6/10/11. 00006 // Copyright 2011 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 00011 00012 @interface LocalScoreData : NSObject<NSCoding> { 00013 00014 } 00019 @property NSInteger index; 00020 00022 @property (copy) NSString *composer; 00023 00025 @property (copy) NSString *composition; 00026 00028 @property (copy) NSString* description; 00029 00032 @property (copy) NSString* fullMetaData; 00033 00035 @property (copy) NSDictionary* metaDataDict; 00036 00038 @property (copy) NSString *userNotes; 00039 00041 @property (copy) NSString *pdfFilepath; 00042 00043 -(id)alloc; 00044 -(id)init; 00045 -(void)dealloc; 00046 00048 - (id)initWithCoder:(NSCoder *)decoder; 00049 - (void)encodeWithCoder:(NSCoder *)encoder; 00050 00051 @end