diff options
Diffstat (limited to 'MLKBinding.h')
-rw-r--r-- | MLKBinding.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MLKBinding.h b/MLKBinding.h index 725037f..421b731 100644 --- a/MLKBinding.h +++ b/MLKBinding.h @@ -19,6 +19,9 @@ #import <Foundation/NSObject.h> +/* Class: MLKBinding + +A binding in some environment. */ @interface MLKBinding : NSObject { id value; @@ -26,6 +29,8 @@ +(void) initialize; +/*** Section: Initialisation and Allocation ***/ + /* Function: -init Initalise unbound binding cell. @@ -38,6 +43,9 @@ */ -(MLKBinding *) initWithValue:(id)something; + +/*** Section: Accessing Content ***/ + /* Function: +binding Construct an unbound binding cell. |