aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Utility/ConvertEnum.h
blob: 6d37484b011261644b3d20c041810d5e5e3b5115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===-- 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