10 #ifndef LLDB_SBFunction_h_ 
   11 #define LLDB_SBFunction_h_ 
   31   const char *GetName() 
const;
 
   33   const char *GetDisplayName() 
const;
 
   35   const char *GetMangledName() 
const;
 
   46   const char *GetArgumentName(uint32_t arg_idx);
 
   48   uint32_t GetPrologueByteSize();
 
   54   lldb::LanguageType GetLanguage();
 
   56   bool GetIsOptimized();
 
   65   lldb_private::Function *
get();
 
   67   void reset(lldb_private::Function *lldb_object_ptr);
 
   74   SBFunction(lldb_private::Function *lldb_object_ptr);
 
   76   lldb_private::Function *m_opaque_ptr;
 
   81 #endif // LLDB_SBFunction_h_ 
class LLDB_API SBFunction