mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 17:06:06 +00:00

The rationale here is that ArchSpec is used throughout the codebase, including in places which should not depend on the rest of the code in the Core module. This commit touches many files, but most of it is just renaming of #include lines. In a couple of cases, I removed the #include ArchSpec line altogether, as the file was not using it. In one or two places, this necessitated adding other #includes like lldb-private-defines.h. llvm-svn: 318048
32 lines
978 B
C++
32 lines
978 B
C++
//===-- CommandObjectFrame.h ------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_CommandObjectFrame_h_
|
|
#define liblldb_CommandObjectFrame_h_
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
|
#include "lldb/Interpreter/Options.h"
|
|
|
|
namespace lldb_private {
|
|
|
|
//-------------------------------------------------------------------------
|
|
// CommandObjectMultiwordFrame
|
|
//-------------------------------------------------------------------------
|
|
|
|
class CommandObjectMultiwordFrame : public CommandObjectMultiword {
|
|
public:
|
|
CommandObjectMultiwordFrame(CommandInterpreter &interpreter);
|
|
|
|
~CommandObjectMultiwordFrame() override;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // liblldb_CommandObjectFrame_h_
|