1#include "pyobjc.h"
2
3@interface OC_PythonSet : NSMutableSet
4{
5	PyObject* value;
6}
7
8+ depythonifyObject:(PyObject*)object;
9+ newWithPythonObject:(PyObject*)value;
10- initWithPythonObject:(PyObject*)value;
11-(void)dealloc;
12-(PyObject*)__pyobjc_PythonObject__;
13
14@end
15