00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #include <bits/std_string.h>
00038
00039
00040 #ifndef C
00041 # define C char
00042 #endif
00043
00044 namespace std
00045 {
00046 typedef basic_string<C> S;
00047
00048 template class basic_string<C>;
00049
00050 template S operator+(const C*, const S&);
00051 template S operator+(C, const S&);
00052 template bool operator==(const S::iterator&, const S::iterator&);
00053 template bool operator==(const S::const_iterator&, const S::const_iterator&);
00054
00055
00056
00057
00058 template
00059 S&
00060 S::_M_replace<S::iterator>
00061 (S::iterator, S::iterator, S::iterator, S::iterator, forward_iterator_tag);
00062
00063 template
00064 S&
00065 S::_M_replace<S::const_iterator>
00066 (S::iterator, S::iterator,
00067 S::const_iterator, S::const_iterator, forward_iterator_tag);
00068
00069 template
00070 C*
00071 S::_S_construct<S::iterator>
00072 (S::iterator, S::iterator, const allocator<C>&, forward_iterator_tag);
00073
00074 template
00075 S::basic_string(C*, C*, const allocator<C>&);
00076
00077 template
00078 S::basic_string(S::iterator, S::iterator, const allocator<C>&);
00079
00080 template
00081 S&
00082 S::_M_replace(S::iterator, S::iterator, C*, C*, forward_iterator_tag);
00083
00084 template
00085 S&
00086 S::_M_replace(S::iterator, S::iterator, const C*, const C*,
00087 forward_iterator_tag);
00088
00089 template
00090 C*
00091 S::_S_construct(const C*, const C*, const allocator<C>&,
00092 forward_iterator_tag);
00093
00094 template
00095 C*
00096 S::_S_construct (C*, C*, const allocator<C>&,
00097 forward_iterator_tag);
00098
00099 template
00100 void
00101 __destroy_aux<S*>(S*, S*, _Bool<false>);
00102 }