summaryrefslogtreecommitdiff
path: root/Ivy/IvyPPC/IvyTCPStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy/IvyPPC/IvyTCPStream.cs')
-rw-r--r--Ivy/IvyPPC/IvyTCPStream.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Ivy/IvyPPC/IvyTCPStream.cs b/Ivy/IvyPPC/IvyTCPStream.cs
deleted file mode 100644
index b8fee34..0000000
--- a/Ivy/IvyPPC/IvyTCPStream.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Specialized;
-using System.Text;
-using System.Net;
-using System.Net.Sockets;
-using System.IO;
-
-namespace IvyBus
-{
- abstract class IvyTCPStream : NetworkStream
- {
- public IvyTCPStream(Socket socket)
- : base(socket, true)
- {
- }
-
- abstract internal bool receiveMsg();
-
- }
-}