summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h b/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h
new file mode 100644
index 00000000000..a8dc2a63f55
--- /dev/null
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/vs.h
@@ -0,0 +1,60 @@
+/* -*- c++ -*- */
+/* $Id$ */
+
+// ============================================================================
+//
+// = LIBRARY
+// vs
+//
+// = FILENAME
+// vs.h
+//
+// = DESCRIPTION
+// @@ Please add a synopsis of this file.
+//
+// = AUTHORS
+// Sumedh Mungee (sumedh@cs.wustl.edu)
+// Nagarajan Surendran (naga@cs.wustl.edu)
+//
+// ============================================================================
+
+#ifndef TAO_AV_VS_H
+#define TAO_AV_VS_H
+
+#include "ace/Get_Opt.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/Acceptor.h"
+#include "ace/Svc_Handler.h"
+#include "ace/SOCK_Acceptor.h"
+#include "ace/INET_Addr.h"
+#include "ace/SOCK_CODgram.h"
+#include "ace/Select_Reactor.h"
+
+#include "include/common.h"
+#include "mpeg_server/server_proto.h"
+#include "mpeg_shared/fileio.h"
+#include "mpeg_shared/routine.h"
+#include "mpeg_shared/com.h"
+#include "mpeg_server/Video_Control_i.h"
+#include "orbsvcs/orbsvcs/Naming/Naming_Utils.h"
+
+#include "mpeg_server/Video_Server.h"
+#include "orbsvcs/AV/AVStreams_i.h"
+
+class Video_Child_Process
+ :public TAO_AV_Child_Process_B <Video_Server_StreamEndPoint,TAO_VDev,Video_Control_i>
+{
+public:
+ int init (int argc,
+ char **argv);
+ // init the Video Singleton.
+
+ int make_mediactrl (Video_Control_i *&media_ctrl);
+};
+
+
+#endif /* TAO_AV_VS_H */