2
0

qemu-objects.h 506 B

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