2010-07-07 11:36:20 +08:00
|
|
|
//===-- CommandObjectSource.h.h -----------------------------------*- C++
|
|
|
|
//-*-===//
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectSource_h_
|
|
|
|
#define liblldb_CommandObjectSource_h_
|
|
|
|
|
2010-07-07 11:36:20 +08:00
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
2010-07-07 11:36:20 +08:00
|
|
|
// CommandObjectMultiwordSource
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-07-07 11:36:20 +08:00
|
|
|
class CommandObjectMultiwordSource : public CommandObjectMultiword {
|
2010-06-09 00:52:24 +08:00
|
|
|
public:
|
2010-07-07 11:36:20 +08:00
|
|
|
CommandObjectMultiwordSource(CommandInterpreter &interpreter);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
~CommandObjectMultiwordSource() override;
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectSource_h_
|