#include <CastAwayConst.h>
Public Member Functions | |
CastAway (std::vector< C * > &nc) | |
void | operator() (const C *e) |
Private Attributes | |
std::vector< C * > & | m_noConst |
Definition at line 13 of file CastAwayConst.h.
Atlfast::CastAway< C >::CastAway | ( | std::vector< C * > & | nc | ) | [inline] |
void Atlfast::CastAway< C >::operator() | ( | const C * | e | ) | [inline] |
Definition at line 16 of file CastAwayConst.h.
00016 { 00017 m_noConst.push_back(const_cast<C*>(e)); 00018 }
std::vector<C*>& Atlfast::CastAway< C >::m_noConst [private] |
Definition at line 20 of file CastAwayConst.h.