terminal/src/inc/ITerminalOutputConnection.hpp
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

32 lines
874 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
/*
Module Name:
- ITerminalOutputConnection.hpp
Abstract:
- Provides an abstraction for writing to the output pipe connected to the TTY.
In conpty mode, this is implemented by the VtRenderer, such that other
parts of the codebase (the state machine) can write VT sequences directly
to the terminal controlling us.
*/
#pragma once
namespace Microsoft::Console
{
class ITerminalOutputConnection
{
public:
virtual ~ITerminalOutputConnection() = 0;
[[nodiscard]]
virtual HRESULT WriteTerminalUtf8(const std::string& str) = 0;
[[nodiscard]]
virtual HRESULT WriteTerminalW(const std::wstring& wstr) = 0;
};
inline Microsoft::Console::ITerminalOutputConnection::~ITerminalOutputConnection() { }
}