source: gs2-extensions/iOS-1.x/trunk/GSResultItem.h@ 32238

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

Original version of Greenstone2 app for iPhone/iPod-touch

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.