terminal/src/interactivity/win32/ConsoleInputThread.hpp
N d09fdd61cb
Change backslashes in include statements to forward slashes (#8205)
Many include statements use forward slashes, while others use backwards
slashes. This is inconsistent formatting. For this reason, I changed the
backward slashes to forward slashes since that is the standard.
2020-11-25 21:02:10 +00:00

28 lines
540 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Module Name:
- ConsoleInputThread.hpp
Abstract:
- Win32 implementation of the IConsoleInputThread interface.
Author(s):
- Hernan Gatta (HeGatta) 29-Mar-2017
--*/
#include "precomp.h"
#include "../inc/IConsoleInputThread.hpp"
namespace Microsoft::Console::Interactivity::Win32
{
class ConsoleInputThread final : public IConsoleInputThread
{
public:
~ConsoleInputThread() = default;
HANDLE Start();
};
}