1*be691f3bSpatrick //===-- CommandObjectSession.h ----------------------------------*- C++ -*-===// 2*be691f3bSpatrick // 3*be691f3bSpatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*be691f3bSpatrick // See https://llvm.org/LICENSE.txt for license information. 5*be691f3bSpatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*be691f3bSpatrick // 7*be691f3bSpatrick //===----------------------------------------------------------------------===// 8*be691f3bSpatrick 9*be691f3bSpatrick #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTSESSION_H 10*be691f3bSpatrick #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTSESSION_H 11*be691f3bSpatrick 12*be691f3bSpatrick #include "lldb/Interpreter/CommandObjectMultiword.h" 13*be691f3bSpatrick 14*be691f3bSpatrick namespace lldb_private { 15*be691f3bSpatrick 16*be691f3bSpatrick class CommandObjectSession : public CommandObjectMultiword { 17*be691f3bSpatrick public: 18*be691f3bSpatrick CommandObjectSession(CommandInterpreter &interpreter); 19*be691f3bSpatrick }; 20*be691f3bSpatrick 21*be691f3bSpatrick } // namespace lldb_private 22*be691f3bSpatrick 23*be691f3bSpatrick #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTSESSION_H 24