summaryrefslogtreecommitdiff
path: root/comm/Stream.h
diff options
context:
space:
mode:
authorchatty1994-05-10 11:17:49 +0000
committerchatty1994-05-10 11:17:49 +0000
commita159d11a1f07c5e30fc8d120cd6f035b90e35d66 (patch)
treed47bf7d904576b40d5f08decad7dc586750f5e54 /comm/Stream.h
parentd9e858f2c682937760595df6f62d8544806758e2 (diff)
downloadivy-league-a159d11a1f07c5e30fc8d120cd6f035b90e35d66.zip
ivy-league-a159d11a1f07c5e30fc8d120cd6f035b90e35d66.tar.gz
ivy-league-a159d11a1f07c5e30fc8d120cd6f035b90e35d66.tar.bz2
ivy-league-a159d11a1f07c5e30fc8d120cd6f035b90e35d66.tar.xz
Removed useless default constructor
Diffstat (limited to 'comm/Stream.h')
-rw-r--r--comm/Stream.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/comm/Stream.h b/comm/Stream.h
index 3a4282d..a8c4a56 100644
--- a/comm/Stream.h
+++ b/comm/Stream.h
@@ -20,14 +20,12 @@
class UchStream : public UchSocket {
public:
- UchStream ();
- UchStream (UchAddress*, UchAddress*);
+ UchStream (UchAddress* = 0, UchAddress* = 0);
~UchStream ();
UchStream (const UchStream&);
UchChannel* Copy () const;
int SockType ();
int Listen (int = 5);
- UchSocket* SockAccept ();
};
#endif /* Stream_H_ */