DWARFDebugMacinfo.h revision d996d0c32b483c2190e1eb288cd3bbbd259c2960
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_DWARFDebugLine_h_
11#define SymbolFileDWARF_DWARFDebugLine_h_
12
13#include "SymbolFileDWARF.h"
14
15class DWARFDebugMacinfo
16{
17public:
18    DWARFDebugMacinfo();
19
20    ~DWARFDebugMacinfo();
21
22    static void
23    Dump (lldb_private::Stream *s,
24          const lldb_private::DataExtractor& macinfo_data,
25          dw_offset_t offset = DW_INVALID_OFFSET);
26};
27
28
29#endif  // SymbolFileDWARF_DWARFDebugLine_h_
30