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,9f3d09bde7b33b5d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-04-09 12:09:18 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: dan.r.mcleran@seagate.com (Dan McLeran) Newsgroups: comp.lang.ada Subject: Re: Pass by reference Date: 9 Apr 2004 12:09:18 -0700 Organization: http://groups.google.com Message-ID: <19b0e504.0404091109.134587c6@posting.google.com> References: <19b0e504.0404080652.4eab9f80@posting.google.com> <19b0e504.0404090438.7e800536@posting.google.com> NNTP-Posting-Host: 192.55.20.36 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1081537758 1171 127.0.0.1 (9 Apr 2004 19:09:18 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 9 Apr 2004 19:09:18 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:6921 Date: 2004-04-09T12:09:18-07:00 List-Id: > This need not to be tagged, because there is no dispatching subroutines > here. A rough C++ equivalent of a tagged type is a class with virtual > functions. Quite right. This is a better example: struct Silly { virtual int Get() { return i; } private: int i; };