->
.
More...
#include <functor.h>
Public Types | |
typedef T * | value_type |
typedef T | base_value_type |
Public Member Functions | |
object_reference_wrapper () | |
object_reference_wrapper (value_type &obj) | |
base_value_type & | operator() (value_type &t) |
Sets this object's proxied object to t and Returns t. | |
base_value_type & | operator() () const |
Returns this object's wrapped object. |
->
.
Definition at line 130 of file functor.h.
|
Returns this object's wrapped object. ACHTUNG: this function WILL Cause Grief if it is called on a default-constructed version of this object: you must set this object's wrapped value using the ctor, operator(T), or via copying this object from a properly-initialized one before calling this. |