#include <PtrAdapter.h>
Inheritance diagram for FastShower::PtrAdapter< Type, InterfacePtr >:
Public Methods | |
Type * | adapt (Type *ptr, const std::string &name) const |
|
Implements FastShower::IPtrAdapter< Type >. Definition at line 19 of file PtrAdapter.h.
00019 { 00020 Type* interfacePtr = new InterfacePtr(ptr, name); 00021 return interfacePtr; 00022 } |