Hello:

When I use a "prefix" in my .idl...

File hello.idl:

  #pragma prefix "example"

  module hello_mod {
    interface hello {
      void puts(in string str);
    };
  };

 ...the module name that I must import is "example"

  import ORBit

  ORBit.load_typelib('./hello_module.so')

  import CORBA, example


But, when the prefix contains a dot...

  #pragma prefix "example.org"


 ... What is the name of the module??

  import ORBit

  ORBit.load_typelib('./hello_module.so')

  import CORBA, ?????


Thanks in advance,
        David


_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to