Path: utzoo!utgpu!news-server.csri.toronto.edu!clyde.concordia.ca!uunet!jarthur!uci-ics!rfg From: rfg@ics.uci.edu (Ronald Guilmette) Newsgroups: comp.lang.c++ Subject: Re: C++ compiler that supports multiple inheritance Keywords: C++, multiple inheritance Message-ID: <26108CA2.2713@paris.ics.uci.edu> Date: 28 Mar 90 10:06:27 GMT References: <35701@watmath.waterloo.edu> Reply-To: rfg@ics.uci.edu (Ronald Guilmette) Distribution: comp Organization: UC Irvine Department of ICS Lines: 20 In article <35701@watmath.waterloo.edu> jwkhong@grand.waterloo.edu (James W. Hong) writes: >Could someone tell me what the status of C++ compilers for supporting multiple >inheritance is? Is there any C++ compiler that supports multiple inheritance >already available? If not, does anyone know if and when such a C++ compiler >might be available? (Please execuse me if these things were already mentioned >in this newsgroup.) Thanks in advance. The Cfront 2.0 translator (from AT&T) supports Multiple Inheritance (MI). It is probably safe to assume that all subsequent AT&T versions of cfront will also. The GNU g++ compiler from the Free Software Foundation has been supporting MI for some time (i.e. since several versions ago). The current version is 1.37.1. It is probably safe to assume that all future versions of g++ will also support MI. // Ron Guilmette (rfg@ics.uci.edu) // C++ Entomologist // Motto: If it sticks, force it. If it breaks, it needed replacing anyway.