summaryrefslogtreecommitdiff
path: root/MLKListenerController.h
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-08-28 14:31:01 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-08-28 14:31:01 +0200
commit5afdd34ed00ed1de76b90a884e5b04bd699dc0af (patch)
tree80ee1ced4a3830f21da4bd9c9658903a45e44bc7 /MLKListenerController.h
parentb2b6a790d8f6b1002973ef522a928a2047be511d (diff)
Listener: Add output stream stubs.
Diffstat (limited to 'MLKListenerController.h')
-rw-r--r--MLKListenerController.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/MLKListenerController.h b/MLKListenerController.h
index d9714dd..a5a7a4b 100644
--- a/MLKListenerController.h
+++ b/MLKListenerController.h
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#import "MLKStream.h"
+
#import <Cocoa/Cocoa.h>
@interface MLKListenerController : NSObject
@@ -25,6 +27,15 @@
IBOutlet id outputTextView;
IBOutlet id statusText;
IBOutlet id submitButton;
+
+ MLKStream *lispStream;
+ NSOutputStream *ostream;
}
+
+- (id)init;
+- (void)dealloc;
+
+- (void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)event;
+
- (IBAction)submit:(id)sender;
@end