diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-10-04 02:40:27 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-10-04 09:45:29 +0000 |
commit | c21004b921c67b3e7748cc1f0c53d02deec1ebca (patch) | |
tree | ac3a8f0eacec9e3a9ed56d073bfc6567c4eed502 /UICaboodle/RVBook.h | |
parent | 6d16684908fdd65f8cc7e000f8c28624a4aa0516 (diff) |
Rewrote the build environment from scratch.
Diffstat (limited to 'UICaboodle/RVBook.h')
-rw-r--r-- | UICaboodle/RVBook.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/UICaboodle/RVBook.h b/UICaboodle/RVBook.h index b605cc6..09b1baf 100644 --- a/UICaboodle/RVBook.h +++ b/UICaboodle/RVBook.h @@ -2,10 +2,14 @@ #import <UIKit/UIKit.h> +@protocol HookProtocol +- (void) didDismissModalViewController; +@end + @interface UCNavigationController : UINavigationController { - id hook_; + id<HookProtocol> hook_; } -- (void) setHook:(id)hook; +- (void) setHook:(id<HookProtocol>)hook; @end |