#ifndef __IgnitionModes__IDL__ #define __IgnitionModes__IDL__ enum IgnitionModes { KEYOFF = 0, CRANK = 1, KEYON = 2, RUN = 255 }; #endif #ifndef __top_middle_inner_DDSTypesBus__IDL__ #define __top_middle_inner_DDSTypesBus__IDL__ module top { module middle { module inner { struct DDSTypesBus { boolean boolT; char s8; octet u8; short s16; unsigned short u16; long s32; unsigned long u32; float f32; double f64; IgnitionModes mode; }; }; }; }; #endif