basic_iterator.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // -*- C++ -*-
  2. // Copyright (C) 2007-2018 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the terms
  6. // of the GNU General Public License as published by the Free Software
  7. // Foundation; either version 3, or (at your option) any later
  8. // version.
  9. // This library is distributed in the hope that it will be useful, but
  10. // WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. // General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. /** @file parallel/basic_iterator.h
  21. * @brief Includes the original header files concerned with iterators
  22. * except for stream iterators.
  23. * This file is a GNU parallel extension to the Standard C++ Library.
  24. */
  25. // Written by Johannes Singler.
  26. #ifndef _GLIBCXX_PARALLEL_BASIC_ITERATOR_H
  27. #define _GLIBCXX_PARALLEL_BASIC_ITERATOR_H 1
  28. #include <bits/c++config.h>
  29. #include <bits/stl_iterator_base_types.h>
  30. #include <bits/stl_iterator_base_funcs.h>
  31. #include <bits/stl_iterator.h>
  32. #endif /* _GLIBCXX_PARALLEL_BASIC_ITERATOR_H */