| 1 | /* |
| 2 | * QEMU Confidential Guest support |
| 3 | * |
| 4 | * Copyright (C) 2024 Red Hat, Inc. |
| 5 | * |
| 6 | * Authors: |
| 7 | * Paolo Bonzini <pbonzini@redhat.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2 or |
| 10 | * later. See the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include "qemu/osdep.h" |
| 15 | |
| 16 | #include "confidential-guest.h" |
| 17 | |
| 18 | OBJECT_DEFINE_ABSTRACT_TYPE(X86ConfidentialGuest, |
| 19 | x86_confidential_guest, |
| 20 | X86_CONFIDENTIAL_GUEST, |
| 21 | CONFIDENTIAL_GUEST_SUPPORT) |
| 22 | |
| 23 | static void x86_confidential_guest_class_init(ObjectClass *oc, const void *data) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | static void x86_confidential_guest_init(Object *obj) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | static void x86_confidential_guest_finalize(Object *obj) |
| 32 | { |
| 33 | } |