~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/tests/misc/test8.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20080410174052-dbne39zue793jgrh
Tags: upstream-1.0pre4~svn.20080409+dfsg
ImportĀ upstreamĀ versionĀ 1.0pre4~svn.20080409+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************
 
2
 ** complex class template instantiation **
 
3
 ** and instantiation of templates as    **
 
4
 ** default arguments                    **
 
5
 ******************************************/
 
6
 
 
7
template<typename _Alloc> 
 
8
class allocator;
 
9
 
 
10
template<class _CharT>
 
11
struct char_traits;
 
12
 
 
13
template<typename _CharT, typename _Traits = char_traits<_CharT> , 
 
14
         typename _Alloc = allocator<_CharT> >
 
15
class basic_string;
 
16
  
 
17
template<> struct char_traits<char>;
 
18
 
 
19
typedef basic_string<char> string;