1 /* 2 * Include all QEMU objects. 3 * 4 * Copyright (C) 2009 Red Hat Inc. 5 * 6 * Authors: 7 * Luiz Capitulino <lcapitulino (at) redhat.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2. See 10 * the COPYING file in the top-level directory. 11 */ 12 #ifndef QEMU_OBJECTS_H 13 #define QEMU_OBJECTS_H 14 15 #include "qobject.h" 16 #include "qint.h" 17 #include "qfloat.h" 18 #include "qbool.h" 19 #include "qstring.h" 20 #include "qdict.h" 21 #include "qlist.h" 22 #include "qjson.h" 23 24 #endif /* QEMU_OBJECTS_H */ 25