// // Interfaces for testing basic interoperability // interface TestChars { char testChar(in char c); string testString(in string s); wchar testWChar(in wchar wc); wstring testWString(in wstring ws); }; typedef fixed<3, 2> FixedType; interface TestFixeds { FixedType testFixed(in FixedType a_fixed); };