blob: 3d6e7e48b91f427fe11ef9219c9eb1ed62747f22 [file] [log] [blame]
//===-- SBCompileUnit.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_SBCompileUnit_h_
#define LLDB_SBCompileUnit_h_
#include <LLDB/SBDefines.h>
#include <LLDB/SBFileSpec.h>
namespace lldb {
class SBCompileUnit
{
public:
SBCompileUnit ();
~SBCompileUnit ();
bool
IsValid () const;
lldb::SBFileSpec
GetFileSpec () const;
uint32_t
GetNumLineEntries () const;
lldb::SBLineEntry
GetLineEntryAtIndex (uint32_t idx) const;
uint32_t
FindLineEntryIndex (uint32_t start_idx,
uint32_t line,
lldb::SBFileSpec *inline_file_spec) const;
#ifndef SWIG
bool
operator == (const lldb::SBCompileUnit &rhs) const;
bool
operator != (const lldb::SBCompileUnit &rhs) const;
#endif
private:
friend class SBFrame;
friend class SBSymbolContext;
SBCompileUnit (lldb_private::CompileUnit *lldb_object_ptr);
#ifndef SWIG
const lldb_private::CompileUnit *
operator->() const;
const lldb_private::CompileUnit &
operator*() const;
#endif
lldb_private::CompileUnit *m_lldb_object_ptr;
};
} // namespace lldb
#endif // LLDB_SBCompileUnit_h_