blob: 239247d6a1da54dc6dd52d09e991ed573efa2c63 [file] [log] [blame]
//===-- 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