19 lines
228 B
C
19 lines
228 B
C
|
|
#ifndef _LIBOBJC_NSOBJECT_H
|
||
|
|
#define _LIBOBJC_NSOBJECT_H
|
||
|
|
|
||
|
|
#include <libobjc/runtime.h>
|
||
|
|
|
||
|
|
@interface NSObject {
|
||
|
|
Class isa;
|
||
|
|
}
|
||
|
|
|
||
|
|
+ (id)init;
|
||
|
|
+ (id)new;
|
||
|
|
+ (id)alloc;
|
||
|
|
|
||
|
|
- (id)init;
|
||
|
|
- (Class)class;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
#endif // _LIBOBJC_NSOBJECT_H
|