summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/server.h')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/server.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/server.h b/TAO/orbsvcs/tests/AVStreams/server.h
deleted file mode 100644
index 4d659125857..00000000000
--- a/TAO/orbsvcs/tests/AVStreams/server.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* -*- C++ -*- */
-
-/* $Id$ */
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/orbsvcs/tests/AVStreams
-//
-// = FILENAME
-// server.h
-//
-// = DESCRIPTION
-// Test server for the AVStreams demo
-//
-// = AUTHORS
-// Sumedh Mungee <sumedh@cs.wustl.edu>
-//
-// ============================================================================
-
-#if !defined (AVSTREAMS_SERVER_H)
-#define AVSTREAMS_SERVER_H
-
-#include "orbsvcs/AV/AVStreams_i.h"
-#include "tao/tao_util.h"
-
-
-class Video_Server_StreamEndPoint
- : public virtual TAO_Server_StreamEndPoint
-// = TITLE
-// Server Stream Endpoint for A/V Streams demo
-// = DESCRIPTION
-// Encapsulates server side transport functionality
-{
-public:
- Video_Server_StreamEndPoint ();
-
- // Handles stream stoppage
- virtual void handle_stop (const AVStreams::flowSpec &the_spec,
- CORBA::Environment &env);
-
- // Handles stream start. Starts the flow of data
- virtual void handle_start (const AVStreams::flowSpec &the_spec,
- CORBA::Environment &env);
-
- // Handles the destruction of the stream, tears down the transport
- virtual void handle_destroy (const AVStreams::flowSpec &the_spec,
- CORBA::Environment &env);
-
- // Handles stream bind, establishes the transport
- virtual CORBA::Boolean handle_connection_requested (AVStreams::StreamEndPoint_ptr initiator,
- CORBA::Boolean is_mcast,
- AVStreams::streamQoS &qos,
- AVStreams::flowSpec &the_spec,
- CORBA::Environment &env);
-
-};
-
-#endif /* AVSTREAMS_SERVER_H */