Files
Custom-Operating-System/libs/libobjc/include/libfoundation/NSObject.h

19 lines
228 B
C
Raw Normal View History

2025-02-12 09:54:05 -05:00
#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