]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Host/MainLoop.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / include / lldb / Host / MainLoop.h
1 //===-- MainLoop.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 lldb_Host_MainLoop_h_
11 #define lldb_Host_MainLoop_h_
12
13 #ifdef _WIN32
14 #include "lldb/Host/MainLoopBase.h"
15 namespace lldb_private {
16 typedef MainLoopBase MainLoop;
17 }
18 #else
19 #include "lldb/Host/posix/MainLoopPosix.h"
20 namespace lldb_private {
21 typedef MainLoopPosix MainLoop;
22 }
23 #endif
24
25 #endif // lldb_Host_MainLoop_h_