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
00016
00017
00018
00019
00020
00021