BLIP/Demo/BLIPEchoServer.h
author Jens Alfke <jens@mooseyard.com>
Sun Jul 13 10:52:48 2008 -0700 (2008-07-13)
changeset 20 02224e981209
permissions -rw-r--r--
* Fixed link error in BLIPClient target.
* Fixed *Ph*n* #ifdef issue (thanks, Jimmy)
     1 //
     2 //  BLIPEchoServer.h
     3 //  MYNetwork
     4 //
     5 //  Created by Jens Alfke on 5/24/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import <Foundation/Foundation.h>
    10 #import "BLIPConnection.h"
    11 
    12 @interface BLIPEchoServer : NSObject <TCPListenerDelegate, BLIPConnectionDelegate>
    13 {
    14     BLIPListener *_listener;
    15 }
    16 
    17 @end