This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
// This helps deal with NSPointerArray that stores pointers to objects that inherit from NSObject. | |
// Not sure if this will work for other pointer types!! | |
@interface NSPointerArray (Helpers) | |
/** | |
* Adds pointer to the given object to the array. | |
* | |
* @param object Object whose pointer needs to be added to the array. |