ptypeList.tcc
Go to the documentation of this file.
00001 #ifndef _PTYPE_LIST_TCC
00002 #define _PTYPE_LIST_TCC
00003 
00004 #include "osl/ptypeList.h"
00005 #include <iostream>
00006 
00007 template<osl::Ptype T,class U>
00008 void osl::ptl::PtypeList<T,U>::show(std::ostream& os)
00009 {
00010   os << "(" << value << " ";
00011   Tail::show(os);
00012   os << ")";
00013 }
00014 
00015 #endif /* _PTYPE_LIST_TCC */
00016 
00017 // ;;; Local Variables:
00018 // ;;; mode:c++
00019 // ;;; c-basic-offset:2
00020 // ;;; End:
00021 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines