19 lines
228 B
Objective-C
19 lines
228 B
Objective-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 |