11 #ifndef LLDB_SBDeclaration_h_ 
   12 #define LLDB_SBDeclaration_h_ 
   33   uint32_t GetLine() 
const;
 
   35   uint32_t GetColumn() 
const;
 
   39   void SetLine(uint32_t line);
 
   41   void SetColumn(uint32_t column);
 
   50   lldb_private::Declaration *
get();
 
   55   const lldb_private::Declaration *operator->() 
const;
 
   57   lldb_private::Declaration &ref();
 
   59   const lldb_private::Declaration &ref() 
const;
 
   61   SBDeclaration(
const lldb_private::Declaration *lldb_object_ptr);
 
   63   void SetDeclaration(
const lldb_private::Declaration &lldb_object_ref);
 
   65   std::unique_ptr<lldb_private::Declaration> m_opaque_ap;
 
   70 #endif // LLDB_SBDeclaration_h_ 
class LLDB_API SBDeclaration