]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Utility/ConvertEnum.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / include / lldb / Utility / ConvertEnum.h
1 //===-- ConvertEnum.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 #ifndef LLDB_UTILITY_CONVERTENUM_H
10 #define LLDB_UTILITY_CONVERTENUM_H
11
12 #include "lldb/lldb-enumerations.h"
13 #include "lldb/lldb-private-enumerations.h"
14
15 namespace lldb_private {
16
17 const char *GetVoteAsCString(Vote vote);
18 const char *GetSectionTypeAsCString(lldb::SectionType sect_type);
19 }
20
21 #endif