summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl b/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl
new file mode 100644
index 00000000000..e7e93b2b7df
--- /dev/null
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl
@@ -0,0 +1,32 @@
+// ============================================================================
+// $Id$
+//
+// = FILENAME
+// Video_Repository.idl
+//
+// = DESCRIPTION
+// Data Structures used by the Video_Repository to describe movies in
+// the Video Repository.
+//
+// = AUTHORS
+// Seth Widoff <sbw1@cs.wustl.edu>
+//
+// ============================================================================
+
+module TAO_VR
+{
+ struct Movie
+ {
+ string name_;
+ string audio_filename_;
+ string video_filename_;
+ string description_;
+ // string movie_format_;
+ // unsigned long filesize_;
+ // unsigned long duration_;
+ // unsigned long framerate_;
+ // unsigned long framesize_;
+ };
+
+ typedef sequence<Movie> Movie_Info;
+};