types.h 556 B

123456789101112131415161718192021222324
  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 QAPI_QMP_TYPES_H
  13. #define QAPI_QMP_TYPES_H
  14. #include "qapi/qmp/qobject.h"
  15. #include "qapi/qmp/qint.h"
  16. #include "qapi/qmp/qfloat.h"
  17. #include "qapi/qmp/qbool.h"
  18. #include "qapi/qmp/qstring.h"
  19. #include "qapi/qmp/qdict.h"
  20. #include "qapi/qmp/qlist.h"
  21. #endif /* QAPI_QMP_TYPES_H */