Teuchos Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions | Private Attributes | List of all members
Teuchos::ConstHandle< PointerType > Class Template Reference

Templated handle class with strong const protection. More...

#include <Teuchos_Handle.hpp>

Inheritance diagram for Teuchos::ConstHandle< PointerType >:
Inheritance graph
[legend]

Public Member Functions

 ConstHandle (const RCP< const PointerType > &ptr)
 Construct with an existing RCP. More...
 
 ConstHandle (const ConstHandleable< PointerType > *ptr)
 Construct with a raw pointer to a ConstHandleable. This will make a call to rcp(), thus removing that call from the user interface. More...
 
const RCP< const PointerType > & constPtr () const
 Read-only access to the underlying smart pointer. More...
 
const PointerType *const rawPtr ()
 Access to raw pointer. More...
 
- Public Member Functions inherited from Teuchos::Describable
virtual std::string description () const
 Return a simple one-line description of this object. More...
 
virtual void describe (FancyOStream &out, const EVerbosityLevel verbLevel=verbLevel_default) const
 Print the object with some verbosity level to a FancyOStream. More...
 
void describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const
 Version of describe() that takes an std::ostream instead of a FancyOStream. More...
 
virtual ~Describable ()
 Destructor (marked virtual for memory safety of derived classes). More...
 
- Public Member Functions inherited from Teuchos::LabeledObject
 LabeledObject ()
 Construct with an empty label. More...
 
virtual ~LabeledObject ()
 
virtual void setObjectLabel (const std::string &objectLabel)
 Set the object label (see LabeledObject). More...
 
virtual std::string getObjectLabel () const
 Get the object label (see LabeledObject). More...
 

Protected Member Functions

 ConstHandle ()
 The empty ctor will only be called by Handle ctors. More...
 
void setRcp (const RCP< PointerType > &ptr)
 This function is needed in Handle ctors. More...
 
RCP< PointerType > nonConstPtr () const
 Protected non-const access to the underlying smart pointer. More...
 

Private Attributes

RCP< const PointerType > ptr_
 

Additional Inherited Members

- Static Public Attributes inherited from Teuchos::Describable
static const EVerbosityLevel verbLevel_default = VERB_DEFAULT
 Default value for the verbLevel argument of describe(). More...
 

Detailed Description

template<typename PointerType>
class Teuchos::ConstHandle< PointerType >

Templated handle class with strong const protection.

In writing derived types, it is usually simplest to use the TEUCHOS_CONST_HANDLE_CTORS macro to generate boilerplate constructor code.

There are two modes of construction: construction from an existing RCP,

RCP<const Base> r = rcp(new Derived(blahblah));
ConstHandle<Base> h = r;

and construction from a raw pointer,

ConstHandle<Base> h = new Derived(blahblah);

The second form makes the code slightly cleaner. Note that to use this second form, it is necessary that Derived implement the ConstHandleable interface; this is necessary to avoid any implicit conversions from just any raw pointer to a smart pointer.

Note that the first form with rcp() must be used whenever the object being handled has been allocated on the stack (using rcp(ptr,false) of course).

Definition at line 79 of file Teuchos_Handle.hpp.

Constructor & Destructor Documentation

template<typename PointerType >
Teuchos::ConstHandle< PointerType >::ConstHandle ( const RCP< const PointerType > &  ptr)
inline

Construct with an existing RCP.

Definition at line 83 of file Teuchos_Handle.hpp.

template<typename PointerType >
Teuchos::ConstHandle< PointerType >::ConstHandle ( const ConstHandleable< PointerType > *  ptr)
inlineexplicit

Construct with a raw pointer to a ConstHandleable. This will make a call to rcp(), thus removing that call from the user interface.

Definition at line 86 of file Teuchos_Handle.hpp.

template<typename PointerType >
Teuchos::ConstHandle< PointerType >::ConstHandle ( )
inlineexplicitprotected

The empty ctor will only be called by Handle ctors.

Definition at line 93 of file Teuchos_Handle.hpp.

Member Function Documentation

template<typename PointerType >
const RCP<const PointerType>& Teuchos::ConstHandle< PointerType >::constPtr ( ) const
inline

Read-only access to the underlying smart pointer.

Definition at line 88 of file Teuchos_Handle.hpp.

template<typename PointerType >
const PointerType* const Teuchos::ConstHandle< PointerType >::rawPtr ( )
inline

Access to raw pointer.

Definition at line 90 of file Teuchos_Handle.hpp.

template<typename PointerType >
void Teuchos::ConstHandle< PointerType >::setRcp ( const RCP< PointerType > &  ptr)
inlineprotected

This function is needed in Handle ctors.

The Handle ctors call the empty ConstHandle ctor and then set the pointer in the ConstHandle with a call to setRcp().

Definition at line 98 of file Teuchos_Handle.hpp.

template<typename PointerType >
RCP<PointerType> Teuchos::ConstHandle< PointerType >::nonConstPtr ( ) const
inlineprotected

Protected non-const access to the underlying smart pointer.

This will be called by the nonConstPtr() method of the non-const Handle subclass

Definition at line 104 of file Teuchos_Handle.hpp.

Member Data Documentation

template<typename PointerType >
RCP<const PointerType> Teuchos::ConstHandle< PointerType >::ptr_
private

Definition at line 108 of file Teuchos_Handle.hpp.


The documentation for this class was generated from the following file: