From: malc <av1474@comtv.ru>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: aliguori@us.ibm.com, filip.navara@gmail.com,
qemu-devel@nongnu.org, avi@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/3] Introduce qobject header file
Date: Thu, 6 Aug 2009 19:54:07 +0400 (MSD) [thread overview]
Message-ID: <Pine.LNX.4.64.0908061953480.2268@linmac.oyster.ru> (raw)
In-Reply-To: <1249566736-5020-2-git-send-email-lcapitulino@redhat.com>
On Thu, 6 Aug 2009, Luiz Capitulino wrote:
> This file contains basic definitions for the QEMU Object Model,
> all object implementions must include this file and add its
> type code in qtype_t enum.
>
> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
> ---
> qobject.h | 33 +++++++++++++++++++++++++++++++++
> 1 files changed, 33 insertions(+), 0 deletions(-)
> create mode 100644 qobject.h
>
> diff --git a/qobject.h b/qobject.h
> new file mode 100644
> index 0000000..b70e669
> --- /dev/null
> +++ b/qobject.h
> @@ -0,0 +1,33 @@
> +/*
> + * QEMU Object Model.
> + *
> + * Copyright (C) 2009 Red Hat Inc.
> + *
> + * Authors:
> + * Luiz Capitulino <lcapitulino@redhat.com>
> + *
> + * Based on ideas by Avi Kivity <avi@redhat.com>
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2. See
> + * the COPYING file in the top-level directory.
> + */
> +#ifndef QOBJECT_H
> +#define QOBJECT_H
> +
> +typedef enum {
> + QTYPE_NONE,
> +} qtype_t;
Please do not use _t suffix.
> +
> +struct QObject;
> +
> +typedef struct QType {
> + qtype_t code;
> + struct QObject *(*clone)(const struct QObject *);
> + void (*destroy)(struct QObject *);
> +} QType;
> +
> +typedef struct QObject {
> + QType *type;
> +} QObject;
> +
> +#endif /* QOBJECT_H */
>
--
mailto:av1474@comtv.ru
next prev parent reply other threads:[~2009-08-06 15:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-06 13:52 [Qemu-devel] [PATCH RFC 0/3] QEMU Object Model Luiz Capitulino
2009-08-06 13:52 ` [Qemu-devel] [PATCH 1/3] Introduce qobject header file Luiz Capitulino
2009-08-06 14:02 ` [Qemu-devel] " Avi Kivity
2009-08-06 14:07 ` Luiz Capitulino
2009-08-06 15:54 ` malc [this message]
2009-08-06 13:52 ` [Qemu-devel] [PATCH 2/3] Introduce QString data type Luiz Capitulino
2009-08-06 13:52 ` [Qemu-devel] [PATCH 3/3] Introduce QNumber " Luiz Capitulino
2009-08-06 14:04 ` [Qemu-devel] " Avi Kivity
2009-08-06 14:05 ` François Revol
2009-08-06 14:48 ` Avi Kivity
2009-08-06 14:10 ` Luiz Capitulino
2009-08-06 21:21 ` Luiz Capitulino
2009-08-06 14:06 ` [Qemu-devel] Re: [PATCH RFC 0/3] QEMU Object Model Avi Kivity
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.64.0908061953480.2268@linmac.oyster.ru \
--to=av1474@comtv.ru \
--cc=aliguori@us.ibm.com \
--cc=avi@redhat.com \
--cc=filip.navara@gmail.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).