00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxVideoWriterFactoryServant_h
00011 #define HxVideoWriterFactoryServant_h
00012
00013 #include <OB/CORBA.h>
00014 #include "HxCorbaVideoWriter_skel.h"
00015
00016 class HxVideoWriterFactoryServant : public POA_HxCorba::VideoWriterFactory
00017 {
00018 public:
00019 HxVideoWriterFactoryServant(PortableServer::POA_ptr poa);
00020 virtual ~HxVideoWriterFactoryServant();
00021
00022 virtual HxCorba::VideoWriter_ptr openVideo(const char* videoName,
00023 CORBA::Long w,
00024 CORBA::Long h);
00025
00026 private:
00027
00028 PortableServer::POA_var _poa;
00029 };
00030
00031 #endif