Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. // Components for manipulating sequences of characters -*- C++ -*-
  2.  
  3. // Copyright (C) 1997-2013 Free Software Foundation, Inc.
  4. //
  5. // This file is part of the GNU ISO C++ Library.  This library is free
  6. // software; you can redistribute it and/or modify it under the
  7. // terms of the GNU General Public License as published by the
  8. // Free Software Foundation; either version 3, or (at your option)
  9. // any later version.
  10.  
  11. // This library is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. // GNU General Public License for more details.
  15.  
  16. // Under Section 7 of GPL version 3, you are granted additional
  17. // permissions described in the GCC Runtime Library Exception, version
  18. // 3.1, as published by the Free Software Foundation.
  19.  
  20. // You should have received a copy of the GNU General Public License and
  21. // a copy of the GCC Runtime Library Exception along with this program;
  22. // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
  23. // <http://www.gnu.org/licenses/>.
  24.  
  25. //
  26. // ISO C++ 14882: 21  Strings library
  27. //
  28.  
  29. // Written by Jason Merrill based upon the specification by Takanori Adachi
  30. // in ANSI X3J16/94-0013R2.  Rewritten by Nathan Myers.
  31.  
  32. #include <string>
  33.  
  34. // Instantiation configuration.
  35. #ifndef C
  36. # define C char
  37. #endif
  38.  
  39. namespace std _GLIBCXX_VISIBILITY(default)
  40. {
  41. _GLIBCXX_BEGIN_NAMESPACE_VERSION
  42.  
  43.   typedef basic_string<C> S;
  44.  
  45.   template class basic_string<C>;
  46.   template S operator+(const C*, const S&);
  47.   template S operator+(C, const S&);
  48.   template S operator+(const S&, const S&);
  49.  
  50.   // Only one template keyword allowed here.
  51.   // See core issue #46 (NAD)
  52.   // http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/cwg_closed.html#46
  53.   template
  54.     S::basic_string(C*, C*, const allocator<C>&);
  55.  
  56.   template
  57.     S::basic_string(const C*, const C*, const allocator<C>&);
  58.  
  59.   template
  60.     S::basic_string(S::iterator, S::iterator, const allocator<C>&);
  61.  
  62.   template
  63.     C*
  64.     S::_S_construct(S::iterator, S::iterator,
  65.                     const allocator<C>&, forward_iterator_tag);
  66.  
  67.   template
  68.     C*
  69.     S::_S_construct(C*, C*, const allocator<C>&, forward_iterator_tag);
  70.  
  71.   template
  72.     C*
  73.     S::_S_construct(const C*, const C*, const allocator<C>&,
  74.                     forward_iterator_tag);
  75.  
  76. _GLIBCXX_END_NAMESPACE_VERSION
  77. } // namespace
  78.  
  79. namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
  80. {
  81. _GLIBCXX_BEGIN_NAMESPACE_VERSION
  82.  
  83.   using std::S;
  84.   template bool operator==(const S::iterator&, const S::iterator&);
  85.   template bool operator==(const S::const_iterator&, const S::const_iterator&);
  86.  
  87. _GLIBCXX_END_NAMESPACE_VERSION
  88. } // namespace
  89.