blob: 805ada8341444eb38181eac5ef8f01f6a450942d (
plain) (
tree)
|
|
// 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.
#pragma once
#include "handle.hpp"
#include "path.hpp"
#include "pipe.hpp"
#include <string>
#include <utility>
namespace winapi {
namespace process {
struct Stream {
Stream(Handle&& handle) : handle{std::move(handle)} {}
Handle handle;
};
struct Stdin : Stream {
Stdin();
explicit Stdin(const std::string& file);
explicit Stdin(const CanonicalPath& file);
explicit Stdin(Pipe&);
};
struct Stdout : Stream {
Stdout();
explicit Stdout(const std::string& file);
explicit Stdout(const CanonicalPath& file);
explicit Stdout(Pipe&);
};
struct Stderr : Stream {
Stderr();
explicit Stderr(const std::string& file);
explicit Stderr(const CanonicalPath& file);
explicit Stderr(Pipe&);
};
struct IO {
IO() = default;
void close();
Stdin std_in;
Stdout std_out;
Stderr std_err;
};
} // namespace process
} // namespace winapi
|