All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ptypeList.tcc
Go to the documentation of this file.
1 #ifndef _PTYPE_LIST_TCC
2 #define _PTYPE_LIST_TCC
3 
4 #include "osl/ptypeList.h"
5 #include <iostream>
6 
7 template<osl::Ptype T,class U>
8 void osl::ptl::PtypeList<T,U>::show(std::ostream& os)
9 {
10  os << "(" << value << " ";
11  Tail::show(os);
12  os << ")";
13 }
14 
15 #endif /* _PTYPE_LIST_TCC */
16 
17 // ;;; Local Variables:
18 // ;;; mode:c++
19 // ;;; c-basic-offset:2
20 // ;;; End:
21