Issue 16563: RadarTrack uses anonymous types (dds-psm-cxx-ftf) Source: Remedy IT (Mr. Johnny Willemsen, jwillemsen(at)remedy.nl) Nature: Uncategorized Issue Severity: Summary: The RaderTrack uses an anonymous type in the example for plot on page 22 of the beta 1 spec. So change struct RadarTrack { string id; long x; long y; long z; //@optional sequence<octet> plot; //@shared }; To typdef sequence<octet> plot_type; struct RadarTrack { string id; long x; long y; long z; //@optional plot_type plot; //@shared }; Resolution: Revised Text: Actions taken: September 23, 2011: received issue Discussion: End of Annotations:===== rus-Scanned: by XS4ALL Virus Scanner Date: Fri, 23 Sep 2011 15:26:06 +0200 From: Johnny Willemsen Reply-To: jwillemsen@remedy.nl Organization: Remedy IT User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0.2) Gecko/20110907 Thunderbird/6.0.2 To: "dds-psm-cxx-ftf@omg.org" Subject: RadarTrack uses anonymous types Hi, The RaderTrack uses an anonymous type in the example for plot on page 22 of the beta 1 spec. So change struct RadarTrack { string id; long x; long y; long z; //@optional sequence plot; //@shared }; To typdef sequence plot_type; struct RadarTrack { string id; long x; long y; long z; //@optional plot_type plot; //@shared }; Best regards, Johnny