From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mz48j-0005mV-9L for qemu-devel@nongnu.org; Sat, 17 Oct 2009 03:55:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mz48d-0005jD-Ow for qemu-devel@nongnu.org; Sat, 17 Oct 2009 03:55:48 -0400 Received: from [199.232.76.173] (port=40193 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mz48d-0005jA-Gc for qemu-devel@nongnu.org; Sat, 17 Oct 2009 03:55:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52463) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mz48d-0001xl-13 for qemu-devel@nongnu.org; Sat, 17 Oct 2009 03:55:43 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9H7tgKr018202 for ; Sat, 17 Oct 2009 03:55:42 -0400 From: Paolo Bonzini Date: Sat, 17 Oct 2009 09:55:32 +0200 Message-Id: <1255766136-3028-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1255766136-3028-1-git-send-email-pbonzini@redhat.com> References: <1255766136-3028-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 3/7] forward declare all QObject subclasses in qobject.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Luiz Capitulino This gives more freedom to define prototypes without dragging in the whole header files. Cc: Luiz Capitulino Signed-off-by: Paolo Bonzini --- qobject.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/qobject.h b/qobject.h index 200644d..f5c78b2 100644 --- a/qobject.h +++ b/qobject.h @@ -44,6 +44,10 @@ typedef enum { } qtype_code; struct QObject; +struct QInt; +struct QString; +struct QDict; +struct QList; typedef struct QType { qtype_code code; -- 1.6.2.5