summaryrefslogtreecommitdiffstats
path: root/Classes/HJMOUserBase.h
blob: 781d1d4522331be955fe4a17b506d4a4372c8758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  HJManagedObjBase.h
//  hjlib
//
//  Copyright Hunter and Johnson 2009, 2010, 2011
//  HJCache may be used freely in any iOS or Mac application free or commercial.
//  May be redistributed as source code only if all the original files are included.
//  See http://www.markj.net/hjcache-iphone-image-cache/

#import <Foundation/Foundation.h>
#import "HJMOUser.h"
#import "HJMOHandler.h"

/*
 Just a simple base class for your own HJMOUser classes. For convienience only, 
 an HJMOUser doesn't have to extend HJMOUserBase
 */

@interface HJMOUserBase : NSObject <HJMOUser> {
	
	HJMOHandler* moHandler;
	id oid;
	NSURL* url;
	
}

@end