blob: d20ac38a151ce41d2ac73fba9cd6e3b112730be5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-common" project.
// For details, see https://github.com/egor-tensin/winapi-common.
// Distributed under the MIT License.
#include "cmd_line.hpp"
#include "handle.hpp"
#include <utility>
namespace winapi {
class Process {
public:
static Process create(const CommandLine&);
void wait();
private:
explicit Process(Handle&& handle) : m_handle{std::move(handle)} {}
Handle m_handle;
};
} // namespace winapi
|