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-Thread: 103376,131f06967722ab4b X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!c13g2000cwb.googlegroups.com!not-for-mail From: "jimmaureenrogers@worldnet.att.net" Newsgroups: comp.lang.ada Subject: Re: Ada 2005? Date: 21 Dec 2004 07:34:15 -0800 Organization: http://groups.google.com Message-ID: <1103643255.196052.267230@c13g2000cwb.googlegroups.com> References: <1103344064.372396.51420@c13g2000cwb.googlegroups.com> <1n1v6175zrtcc.2g6ewdvu7ei5$.dlg@40tude.net> <1103568585.285484.237450@c13g2000cwb.googlegroups.com> <17804669.eaDZ45aH7Z@linux1.krischik.com> NNTP-Posting-Host: 209.194.156.4 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1103643261 23635 127.0.0.1 (21 Dec 2004 15:34:21 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 21 Dec 2004 15:34:21 +0000 (UTC) User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: c13g2000cwb.googlegroups.com; posting-host=209.194.156.4; posting-account=SqOfxAwAAAAkL81YAPGH1JdBwpUXw9ZG Xref: g2news1.google.com comp.lang.ada:7125 Date: 2004-12-21T07:34:15-08:00 List-Id: There are actually some other small differences between "struct" and "class" in C++. In a "struct" all members are public by default, while in a "class" all members are private by default. The "class" syntax provides good defaults for information hiding. The "struct" syntax provides compatibility with C code. Jim Rogers