summaryrefslogtreecommitdiff
path: root/MLKClosure.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-16 11:51:55 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-16 11:51:55 +0200
commit382f1be127ada9e777cae9c230254040b508f607 (patch)
tree6f7024c413657cda21c3630d29422add2afaeb44 /MLKClosure.h
parente60a004c48a14d0b5bb109fe7be5552643289925 (diff)
Add protocol MLKFuncallable.
Diffstat (limited to 'MLKClosure.h')
-rw-r--r--MLKClosure.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/MLKClosure.h b/MLKClosure.h
index b05783f..e8a20d4 100644
--- a/MLKClosure.h
+++ b/MLKClosure.h
@@ -17,11 +17,12 @@
*/
#import "MLKLispValue.h"
+#import "MLKFuncallable.h"
@class MLKFunction, NSArray, NSData;
-@interface MLKClosure : MLKLispValue
+@interface MLKClosure : MLKLispValue <MLKFuncallable>
{
MLKFunction *_code;
NSData *_closedOverVariableVector;