aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Utility/ConvertEnum.h
blob: 239247d6a1da54dc6dd52d09e991ed573efa2c63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- ConvertEnum.h -------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_UTILITY_CONVERTENUM_H
#define LLDB_UTILITY_CONVERTENUM_H

#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-private-enumerations.h"

namespace lldb_private {

const char *GetVoteAsCString(Vote vote);
const char *GetSectionTypeAsCString(lldb::SectionType sect_type);
}

#endif