From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sven Heinzel To: gcc-help@gcc.gnu.org Subject: Using multiple base classes with g++ Date: Thu, 15 Mar 2001 02:20:00 -0000 Message-id: <3AB09720.FA0D9CDF@dvs.de> X-SW-Source: 2001-03/msg00122.html Hello, I tried to build my own class from two base classes with the following code: class Control : public QObject, public QThread { ... but when I try to compile this, I get the error message: control.h:57: parse error before `{' Line 57 is the line with the '{' from the example above. Is the syntax different for g++ or is it just not possible to use two base classes? Thanks in advance. Sven