]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
Copy ^/vendor/NetBSD/tests/dist to contrib/netbsd-tests
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Host / Pipe.h
1 //===-- Pipe.h --------------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_Host_Pipe_h_
11 #define liblldb_Host_Pipe_h_
12
13 #if defined(_WIN32)
14 #include "lldb/Host/windows/PipeWindows.h"
15 namespace lldb_private
16 {
17 typedef PipeWindows Pipe;
18 }
19 #else
20 #include "lldb/Host/posix/PipePosix.h"
21 namespace lldb_private
22 {
23 typedef PipePosix Pipe;
24 }
25 #endif
26
27 #endif // liblldb_Host_Pipe_h_