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

Function object that dereferences a pointer. More...

#include <functional.hpp>

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

List of all members.

Public Member Functions

T & operator() (T *a) const

Detailed Description

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

Function object that dereferences a pointer.

Template arguments:

Author:
Julien Jorge

Definition at line 294 of file functional.hpp.


Member Function Documentation

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

Definition at line 298 of file functional.hpp.

    {
      return *a;
    }

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