[Lldb-commits] [lldb] r232226 - Add accessors on SBCommand to get and set the help texts for a command

Enrico Granata egranata at apple.com
Fri Mar 13 15:32:11 PDT 2015


Author: enrico
Date: Fri Mar 13 17:32:11 2015
New Revision: 232226

URL: http://llvm.org/viewvc/llvm-project?rev=232226&view=rev
Log:
Add accessors on SBCommand to get and set the help texts for a command

Modified:
    lldb/trunk/include/lldb/API/SBCommandInterpreter.h
    lldb/trunk/source/API/SBCommandInterpreter.cpp

Modified: lldb/trunk/include/lldb/API/SBCommandInterpreter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBCommandInterpreter.h?rev=232226&r1=232225&r2=232226&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBCommandInterpreter.h (original)
+++ lldb/trunk/include/lldb/API/SBCommandInterpreter.h Fri Mar 13 17:32:11 2015
@@ -266,6 +266,15 @@ public:
     const char*
     GetHelp ();
     
+    const char*
+    GetHelpLong ();
+    
+    void
+    SetHelp (const char*);
+    
+    void
+    SetHelpLong (const char*);
+    
     lldb::SBCommand
     AddMultiwordCommand (const char* name, const char* help = NULL);
     

Modified: lldb/trunk/source/API/SBCommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBCommandInterpreter.cpp?rev=232226&r1=232225&r2=232226&view=diff
==============================================================================
--- lldb/trunk/source/API/SBCommandInterpreter.cpp (original)
+++ lldb/trunk/source/API/SBCommandInterpreter.cpp Fri Mar 13 17:32:11 2015
@@ -794,6 +794,28 @@ SBCommand::GetHelp ()
     return NULL;
 }
 
+const char*
+SBCommand::GetHelpLong ()
+{
+    if (IsValid ())
+        return m_opaque_sp->GetHelpLong ();
+    return NULL;
+}
+
+void
+SBCommand::SetHelp (const char* help)
+{
+    if (IsValid())
+        m_opaque_sp->SetHelp(help);
+}
+
+void
+SBCommand::SetHelpLong (const char* help)
+{
+    if (IsValid())
+        m_opaque_sp->SetHelpLong(help);
+}
+
 lldb::SBCommand
 SBCommand::AddMultiwordCommand (const char* name, const char* help)
 {





More information about the lldb-commits mailing list