1/*!
2 * @header   OC_NSBundleHack.h
3 * @abstract NSBundle hacks to support plugins
4 * @discussion
5 *     This file defines the class that is used to convince NSBundle
6 *     that it should do the right thing for Python classes.
7 */
8
9#import "pyobjc.h"
10#import <Foundation/Foundation.h>
11
12/*!
13 * @class       OC_NSBundleHack
14 * @abstract    NSBundle hacks to support plugins
15 * @discussion
16 *     This class that is used to post for NSBundle
17 *     if it does not do the right thing
18 */
19
20@interface OC_NSBundleHack : NSBundle
21{
22}
23+(void)installBundleHack;
24@end
25
26@interface OC_NSBundleHackCheck : NSObject
27{
28}
29+(NSBundle*)bundleForClass;
30@end
31