| 
| template<class T >  | 
| bool  | boost::is_null (const boost::shared_ptr< T > &p) | 
|   | Returns true if p.get()==NULL.  More...
  | 
|   | 
| template<class T >  | 
| bool  | boost::nonnull (const boost::shared_ptr< T > &p) | 
|   | Returns true if p.get()!=NULL.  More...
  | 
|   | 
The smart pointer classes Teuchos::RCP and boost::shared_ptr are easily compatible. The two templated conversion functions Teuchos::rcp( const boost::shared_ptr<T> & ) and Teuchos::shared_pointer( const RCP<T> & ) have been created for converting back and forth (see the related non-member functions rcp() and shared_pointer() the RCP classes' documentation). 
template<class T > 
  
  
      
        
          | bool boost::is_null  | 
          ( | 
          const boost::shared_ptr< T > &  | 
          p | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
template<class T > 
  
  
      
        
          | bool boost::nonnull  | 
          ( | 
          const boost::shared_ptr< T > &  | 
          p | ) | 
           | 
         
       
   | 
  
inline   |