]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / tools / lldb / source / Plugins / SymbolFile / DWARF / DWARFDebugMacinfo.h
1 //===-- DWARFDebugMacinfo.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 SymbolFileDWARF_DWARFDebugMacinfo_h_
11 #define SymbolFileDWARF_DWARFDebugMacinfo_h_
12
13 #include "SymbolFileDWARF.h"
14
15 class DWARFDebugMacinfo
16 {
17 public:
18     DWARFDebugMacinfo();
19
20     ~DWARFDebugMacinfo();
21
22     static void
23     Dump (lldb_private::Stream *s,
24           const lldb_private::DWARFDataExtractor& macinfo_data,
25           lldb::offset_t offset = LLDB_INVALID_OFFSET);
26 };
27
28
29 #endif  // SymbolFileDWARF_DWARFDebugMacinfo_h_