mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
d8f92bdf96
fixes #6758
15 lines
238 B
C++
15 lines
238 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
class NetworkTask {
|
|
public:
|
|
static void spawn();
|
|
static bool is_current();
|
|
};
|
|
}
|