]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Host / netbsd / HostInfoNetBSD.h
1 //===-- HostInfoNetBSD.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_netbsd_HostInfoNetBSD_h_
11 #define lldb_Host_netbsd_HostInfoNetBSD_h_
12
13 #include "lldb/Host/posix/HostInfoPosix.h"
14 #include "lldb/Utility/FileSpec.h"
15 #include "llvm/Support/VersionTuple.h"
16
17 namespace lldb_private {
18
19 class HostInfoNetBSD : public HostInfoPosix {
20 public:
21   static llvm::VersionTuple GetOSVersion();
22   static bool GetOSBuildString(std::string &s);
23   static bool GetOSKernelDescription(std::string &s);
24   static FileSpec GetProgramFileSpec();
25 };
26 }
27
28 #endif