blob: 3cfbf6cbdfdcf331af89f6aee1d51501ab27276c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//
// HJManagedObjBase.m
// 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 "HJMOUserBase.h"
@implementation HJMOUserBase
@synthesize moHandler;
@synthesize oid;
@synthesize url;
-(void) dealloc {
[moHandler removeUser:self];
[moHandler release];
[oid release];
[url release];
[super dealloc];
}
-(void) changeManagedObjStateFromLoadedToReady {
}
-(void) managedObjReady {
}
-(void) managedObjFailed {
}
@end
|