00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxCorbaVideoWriter_idl
00011 #define HxCorbaVideoWriter_idl
00012
00013 #include "HxCorbaImageRep.idl"
00014
00015 module HxCorba
00016 {
00017 interface VideoWriter
00018 {
00019 void putFrame(in octet r, in octet g, in octet b);
00020 void putImage(in ImageRep img, in string mode);
00021 void closeVideo();
00022 };
00023
00024 interface VideoWriterFactory
00025 {
00026 VideoWriter openVideo(in string videoName, in long w, in long h);
00027 };
00028 };
00029
00030 #endif //HxCorbaVideoWriter_idl