io/uring/Handler: remove unused header

This commit is contained in:
Max Kellermann 2023-09-16 22:19:45 +02:00
parent 64e91d6eb7
commit 18000ff499
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
// SPDX-License-Identifier: BSD-2-Clause
// Copyright CM4all GmbH
// author: Max Kellermann <mk@cm4all.com>
#pragma once
#include <exception>
struct statx;
class UniqueFileDescriptor;
namespace Uring {
class OpenStatHandler {
public:
virtual void OnOpenStat(UniqueFileDescriptor fd,
struct statx &st) noexcept = 0;
virtual void OnOpenStatError(std::exception_ptr e) noexcept = 0;
};
} // namespace Uring