1 //===-- CommandObjectSettings.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 liblldb_CommandObjectSettings_h_ 11 #define liblldb_CommandObjectSettings_h_ 12 13 #include "lldb/Interpreter/CommandObject.h" 14 #include "lldb/Interpreter/CommandObjectMultiword.h" 15 #include "lldb/Interpreter/Options.h" 16 17 namespace lldb_private { 18 19 //------------------------------------------------------------------------- 20 // CommandObjectMultiwordSettings 21 //------------------------------------------------------------------------- 22 23 class CommandObjectMultiwordSettings : public CommandObjectMultiword { 24 public: 25 CommandObjectMultiwordSettings(CommandInterpreter &interpreter); 26 27 ~CommandObjectMultiwordSettings() override; 28 }; 29 30 } // namespace lldb_private 31 32 #endif // liblldb_CommandObjectSettings_h_ 33