blob: 67e2814e11f9f95e807b2fa215a51623d1c0688b [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#pragma once
namespace hypervisor {
// Allows hypervisor state to be invalidated.
struct StateInvalidator {
virtual ~StateInvalidator() = default;
virtual void Invalidate() = 0;
};
} // namespace hypervisor