#include <STK_Proxy.h>
Inherits STK::IProxy.
Public Member Functions | |
| ConstProxy (const TYPE &x) | |
| virtual | ~ConstProxy () |
| operator TYPE const & () const | |
Protected Attributes | |
| const TYPE & | x_ |
| A constant reference on the object wrapped. | |
dynamic_cast.This class allow:
dynamic_cast Definition at line 74 of file STK_Proxy.h.
| STK::ConstProxy< TYPE >::ConstProxy | ( | const TYPE & | x | ) | [inline] |
Default Ctor : create a reference of the value x.
| x | the value to wrap |
Definition at line 83 of file STK_Proxy.h.
00083 : x_(x) 00084 { ;}
| virtual STK::ConstProxy< TYPE >::~ConstProxy | ( | ) | [inline, virtual] |
| STK::ConstProxy< TYPE >::operator TYPE const & | ( | ) | const [inline] |
Constant conversion operator to TYPE.
Definition at line 92 of file STK_Proxy.h.
References STK::ConstProxy< TYPE >::x_.
00093 { return x_;}
const TYPE& STK::ConstProxy< TYPE >::x_ [protected] |
Definition at line 77 of file STK_Proxy.h.
Referenced by STK::ConstProxy< TYPE >::operator TYPE const &().
1.5.8