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