CLAW Library (a C++ Library Absolutely Wonderful) 1.5.5
Public Member Functions
claw::const_dereference< T > Class Template Reference

Function object that dereferences a constant pointer. More...

#include <functional.hpp>

Inheritance diagram for claw::const_dereference< T >:
unary_function

List of all members.

Public Member Functions

 const_dereference ()
 const_dereference (const dereference< T > &)
 const_dereference (const const_dereference< T > &)
const T & operator() (const T *a) const

Detailed Description

template<typename T>
class claw::const_dereference< T >

Function object that dereferences a constant pointer.

Template arguments:

Author:
Julien Jorge

Definition at line 315 of file functional.hpp.


Constructor & Destructor Documentation

template<typename T >
claw::const_dereference< T >::const_dereference ( ) [inline]

Definition at line 319 of file functional.hpp.

{ }
template<typename T >
claw::const_dereference< T >::const_dereference ( const dereference< T > &  ) [inline]

Definition at line 320 of file functional.hpp.

{ }
template<typename T >
claw::const_dereference< T >::const_dereference ( const const_dereference< T > &  ) [inline]

Definition at line 321 of file functional.hpp.

{ }

Member Function Documentation

template<typename T >
const T& claw::const_dereference< T >::operator() ( const T *  a) const [inline]

Definition at line 323 of file functional.hpp.

    {
      return *a;
    }

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