From b1aa77e450a1397d48d596d4f0193ddcabd4a0d6 Mon Sep 17 00:00:00 2001 From: theraven Date: Thu, 9 Sep 2010 22:11:31 +0000 Subject: [PATCH] Commit some missing files. --- objc/Object.h | 6 ++++++ objc/Protocol.h | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 objc/Object.h create mode 100644 objc/Protocol.h 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