1275072Semaste//===-- Pipe.h --------------------------------------------------*- C++ -*-===//
2275072Semaste//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6275072Semaste//
7275072Semaste//===----------------------------------------------------------------------===//
8275072Semaste
9280031Sdim#ifndef liblldb_Host_Pipe_h_
10280031Sdim#define liblldb_Host_Pipe_h_
11275072Semaste
12280031Sdim#if defined(_WIN32)
13280031Sdim#include "lldb/Host/windows/PipeWindows.h"
14314564Sdimnamespace lldb_private {
15280031Sdimtypedef PipeWindows Pipe;
16280031Sdim}
17280031Sdim#else
18280031Sdim#include "lldb/Host/posix/PipePosix.h"
19314564Sdimnamespace lldb_private {
20280031Sdimtypedef PipePosix Pipe;
21280031Sdim}
22280031Sdim#endif
23275072Semaste
24280031Sdim#endif // liblldb_Host_Pipe_h_
25