#include <iostream>Go to the source code of this file.
Classes | |
| class | Handle< T > |
| Handle class template - a simplified version of boost::intrusive_ptr. More... | |
Functions | |
| template<typename T> | |
| std::ostream & | operator<< (std::ostream &o, const Handle< T > &handle) |
|
||||||||||||||||
|
Handle<T> can be printed with "cout << handle;" Definition at line 200 of file CandFitTrackSA/Handle.h. 00201 {
00202 o << *handle;
00203 return o;
00204 }
|
1.3.9.1