00001 #ifndef _SIMPLE_ACS_TEST_IDL_ 00002 #define _SIMPLE_ACS_TEST_IDL_ 00003 00004 // As a little additional challenge, we include the string typedef 00005 // from a separate file with the same module name 00006 #include <separateTypedef.idl> 00007 00008 #pragma prefix "alma" 00009 00010 module simpleAcsTest { 00011 00012 struct StructOnlyStrings { 00013 string realstring; 00014 }; 00015 00016 struct StructWithMyString { 00017 string realstring; 00018 myString hiddenString; 00019 }; 00020 }; 00021 #endif