From 206e9d65a486e7f01e9fe32b2ef66bc4b0c22798 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Fri, 13 Jun 2008 23:20:02 +0200 Subject: Override -dealloc in every class. --- MLKDynamicContext.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'MLKDynamicContext.h') diff --git a/MLKDynamicContext.h b/MLKDynamicContext.h index ba67ad8..8dc1a2f 100644 --- a/MLKDynamicContext.h +++ b/MLKDynamicContext.h @@ -4,12 +4,12 @@ @class MLKClosure, MLKEnvironment, NSLinkedList, NSMutableDictionary, NSString; -@interface MLKDynamicContext +@interface MLKDynamicContext : NSObject { MLKEnvironment *_conditionHandlers; MLKEnvironment *_restarts; MLKEnvironment *_catchTags; - MLKClosure *_currentConditionHandler; + MLKClosure *_currentConditionHandler; // needed for the Condition Firewall MLKEnvironment *_environment; MLKDynamicContext *_parent; } @@ -25,4 +25,6 @@ +(MLKDynamicContext *) currentContext; +(MLKDynamicContext *) popContext; + +-(void) dealloc; @end -- cgit v1.2.3