~ubuntu-branches/ubuntu/natty/aspectc++/natty

« back to all changes in this revision

Viewing changes to Puma/tests/test8.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

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;