source: gs2-extensions/iOs-3.x/trunk/Classes/GSResultItem.h@ 22603

Last change on this file since 22603 was 22603, checked in by davidb, 14 years ago

Initial cut as iOs 3.x version of Greenstone2.app

File size: 452 bytes
Line 
1
2#import <Foundation/NSString.h>
3
4
5// ***** rename to OIDItem
6// replace all gid with oid ...
7
8@interface GSResultItem: NSObject
9{
10 NSString* _oid;
11 NSString* _title;
12 NSString* _srcurl;
13}
14
15-(id) initWithOID:(NSString*)oid withTitle:(NSString*)title;
16-(id) initWithOID:(NSString*)oid withTitle:(NSString*)title withSrcUrl:(NSString*)srcurl;
17
18-(NSString*) oid;
19-(NSString*) title;
20-(NSString*) srcurl;
21
22-(void) dealloc;
23
24@end
Note: See TracBrowser for help on using the repository browser.