Oolite
Loading...
Searching...
No Matches
OOCacheManager(Singleton) Category Reference

Instance Methods

(id) - copyWithZone: [implementation]
 
(id) - retain [implementation]
 
(NSUInteger) - retainCount [implementation]
 
(void) - release [implementation]
 
(id) - autorelease [implementation]
 

Class Methods

(id) + allocWithZone: [implementation]
 

Detailed Description

Definition at line 655 of file OOCacheManager.m.

Method Documentation

◆ allocWithZone:

+ (id) allocWithZone: (NSZone *)  inZone
implementation

Definition at line 114 of file OOCacheManager.m.

664{
665 if (sSingleton == nil)
666 {
667 sSingleton = [super allocWithZone:inZone];
668 return sSingleton;
669 }
670 return nil;
671}
672
static OODebugMonitor * sSingleton
return nil

◆ autorelease

- (id) autorelease
implementation

Definition at line 114 of file OOCacheManager.m.

697{
698 return self;
699}
700

◆ copyWithZone:

- (id) copyWithZone: (NSZone *)  inZone
implementation

Definition at line 114 of file OOCacheManager.m.

675{
676 return self;
677}
678

◆ release

- (void) release
implementation

Definition at line 114 of file OOCacheManager.m.

693{}
694

◆ retain

- (id) retain
implementation

Definition at line 114 of file OOCacheManager.m.

681{
682 return self;
683}
684

◆ retainCount

- (NSUInteger) retainCount
implementation

Definition at line 114 of file OOCacheManager.m.

687{
688 return UINT_MAX;
689}
690

The documentation for this category was generated from the following file: