From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,499373c5a06cccc1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-02-16 12:18:18 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!diablo.theplanet.net!kibo.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Variant records.. Date: 16 Feb 2004 20:14:42 +0000 Organization: Pushface Sender: simon@smaug.pushface.org Message-ID: References: NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1076962697 9659 62.49.19.209 (16 Feb 2004 20:18:17 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Mon, 16 Feb 2004 20:18:17 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 Xref: archiver1.google.com comp.lang.ada:5610 Date: 2004-02-16T20:14:42+00:00 List-Id: ganesh.ramasivan@gdcanada.com (Ganesh Ramasivan) writes: > type RADAR_TYPE_CHOICE is (RADAR_A, RADAR_B, RADAR_C); > > type RADAR_A_COMMAND_CHOICE is (RADAR_A_STATE, > RADAR_A_MODE, > RADAR_A_DISPLAY_RANGE_SELECT); > > type RADAR_B_COMMAND_CHOICE is (RADAR_B_STATE, > RADAR_B_MODE, > RADAR_B_DISPLAY_RANGE_SELECT); > > type RADAR_C_COMMAND_CHOICE is (RADAR_C_STATE, > RADAR_C_MODE, > RADAR_C_DISPLAY_RANGE_SELECT); I would say you seem to have a basic concept Radar with a set of Commands that might apply to any Radar, and three instances of Radar. type Radar_Kind is (Radar_A, Radar_B, Radar_C); type Radar_Command is (State, Mode, Display_Range_Select); I can see that you might have different sets of states for Radar_A than those for Radar_B, but so far your code doesn't say that. > type RADAR_CHOICE(RADAR_TYPE : RADAR_TYPE_CHOICE := > RADAR_TYPE_CHOICE'FIRST) is > record > case RADAR_TYPE is > when RADAR_A => > null; > when RADAR_B => > null; > when RADAR_C => > null; > end case; > end record; > > How would I specify a variant record which will only allow me to > select RADAR_A for the RADAR_TYPE_CHOICE and RADAR_A_STATE for the > command choice but not RADAR_C_STATE? I don't see any command choice here? I don't really grasp why you want this Radar_Choice thing, perhaps it would help if you could say what you would like to appear in the places you've marked 'null' ... is it type RADAR_CHOICE (RADAR_TYPE : RADAR_TYPE_CHOICE := RADAR_TYPE_CHOICE'FIRST) is record case RADAR_TYPE is when RADAR_A => Radar_A_Command : Radar_A_Command_Choice; when RADAR_B => Radar_B_Command : Radar_B_Command_Choice; when RADAR_C => Radar_C_Command : Radar_C_Command_Choice; end case; end record; Sorry that I'm querying your design intent rather than your actual question, I haven't understood the question properly! -- Simon Wright 100% Ada, no bugs.