Public Member Functions

claw::const_dereference< T > Class Template Reference

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

#include <functional.hpp>

List of all members.

Public Member Functions

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 297 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 300 of file functional.hpp.

    {
      return *a;
    }


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