summaryrefslogtreecommitdiff
path: root/libcult/cult/os/net/multicast-socket.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcult/cult/os/net/multicast-socket.hxx')
-rw-r--r--libcult/cult/os/net/multicast-socket.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/libcult/cult/os/net/multicast-socket.hxx b/libcult/cult/os/net/multicast-socket.hxx
deleted file mode 100644
index 7aeff74..0000000
--- a/libcult/cult/os/net/multicast-socket.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-// file : cult/os/net/multicast-socket.hxx
-// author : Boris Kolpackov <boris@kolpackov.Net>
-// copyright : Copyright (c) 2005-2010 Boris Kolpackov
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#ifndef CULT_OS_NET_MULTICAST_SOCKET_HXX
-#define CULT_OS_NET_MULTICAST_SOCKET_HXX
-
-#include <cult/types.hxx>
-
-#include <cult/os/net/address.hxx>
-#include <cult/os/net/datagram-socket.hxx>
-
-namespace Cult
-{
- namespace OS
- {
- namespace Net
- {
- class MulticastSocket : public virtual DatagramSocket
- {
- protected:
- MulticastSocket ();
-
- virtual
- ~MulticastSocket ();
-
- public:
- virtual Void
- join (Address const& addr) = 0;
-
- virtual Void
- leave () = 0;
- };
- }
- }
-}
-
-
-#endif // CULT_OS_NET_MULTICAST_SOCKET_HXX