CLAW Library (a C++ Library Absolutely Wonderful) 1.5.5
|
Function object that dereferences a pointer. More...
#include <functional.hpp>
Public Member Functions | |
T & | operator() (T *a) const |
Function object that dereferences a pointer.
Template arguments:
int
, not int*
.Definition at line 294 of file functional.hpp.
T& claw::dereference< T >::operator() | ( | T * | a | ) | const [inline] |
Definition at line 298 of file functional.hpp.
{
return *a;
}