diff --git a/objc/Object.h b/objc/Object.h new file mode 100644 index 0000000..7f2d3f9 --- /dev/null +++ b/objc/Object.h @@ -0,0 +1,6 @@ + +@interface Object +{ + Class isa; +} +@end diff --git a/objc/Protocol.h b/objc/Protocol.h new file mode 100644 index 0000000..d38c1f5 --- /dev/null +++ b/objc/Protocol.h @@ -0,0 +1,3 @@ +#import "Object.h" + +@interface Protocol : Object @end