[omniORB] Does enums work at all with VC6

Vincent Trussart vincent@linuxfreak.com
Mon, 16 Oct 2000 09:03:24 -0400


The code generated by "omniidl -bcxx" for this ultra simple IDL 
won't compile with VC6... should it?


module util {

        enum log_level { DEBUG, INFO, ERROR };

        interface Logger {
                void log(in log_level level, in string message);
        };
};



Any hints would be appreciated!

Thanks,

Vincent