/* * The Unix Channel * * by Michel Beaudouin-Lafon * * Copyright 1990-1993 * Laboratoire de Recherche en Informatique (LRI) * * Streams * * $Id$ * $CurLog$ */ #ifndef Stream_H_ #define Stream_H_ #include "cplus_bugs.h" #include "Socket.h" class UchStream : public UchSocket { public: UchStream (); UchStream (UchAddress*, UchAddress*); ~UchStream (); UchStream (const UchStream&); UchChannel* Copy () const; int SockType (); int Listen (int = 5); UchSocket* SockAccept (); }; #endif /* Stream_H_ */