On Fri, May 25, 2001 at 06:14:51PM +0200, Francesco Franz� wrote:
> does anyone know how to build COM server with several interfaces?
> I know there exists a _com_intefaces_ attribute but I didn't find
> how it works...

Hello Franz,

I believe that the _com_interfaces_ attribute on your class can either take a
single interface or a list of interfaces. So, if you have some thing like

class MyCOMServer:
    _com_interfaces_ = [MyInterface1, MyInterface2]
    #... the rest ...

that should just work.

Cheers,
Trent


-- 
Trent Mick
[EMAIL PROTECTED]
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython

Reply via email to