hank
2017-03-03 71172661cf242ba67cf68c387ce24079ead55930
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  wax_garbage_collection.h
//  WaxTests
//
//  Created by Corey Johnson on 2/23/10.
//  Copyright 2010 Probably Interactive. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
@interface wax_gc : NSObject {
 
}
 
+ (void)start;
+ (void)stop;
+ (void)cleanupUnusedObject;
 
@end