hank
2016-12-13 6e1425f9ce40a8d178a0218e24bc37c7b01477bb
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