forked from KolibriOS/kolibrios
4f7ee97ec9
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
/*
|
|
*
|
|
* Copyright (c) 1994
|
|
* Hewlett-Packard Company
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. Hewlett-Packard Company makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*
|
|
*
|
|
* Copyright (c) 1996
|
|
* Silicon Graphics Computer Systems, Inc.
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. Silicon Graphics makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*/
|
|
|
|
#ifndef _CPP_BACKWARD_ITERATOR_H
|
|
#define _CPP_BACKWARD_ITERATOR_H 1
|
|
|
|
#include "backward_warning.h"
|
|
#include "function.h"
|
|
#include <stddef.h>
|
|
#include "iostream.h"
|
|
#include "iterator.h"
|
|
|
|
#include <bits/stl_construct.h>
|
|
#include <bits/stl_raw_storage_iter.h>
|
|
|
|
// Names from stl_iterator.h
|
|
using std::input_iterator_tag;
|
|
using std::output_iterator_tag;
|
|
using std::forward_iterator_tag;
|
|
using std::bidirectional_iterator_tag;
|
|
using std::random_access_iterator_tag;
|
|
|
|
#if 0
|
|
using std::iterator;
|
|
#endif
|
|
using std::input_iterator;
|
|
using std::output_iterator;
|
|
using std::forward_iterator;
|
|
using std::bidirectional_iterator;
|
|
using std::random_access_iterator;
|
|
|
|
using std::iterator_traits;
|
|
|
|
using std::iterator_category;
|
|
using std::distance_type;
|
|
using std::value_type;
|
|
|
|
using std::distance;
|
|
using std::advance;
|
|
|
|
using std::insert_iterator;
|
|
using std::front_insert_iterator;
|
|
using std::back_insert_iterator;
|
|
using std::inserter;
|
|
using std::front_inserter;
|
|
using std::back_inserter;
|
|
|
|
using std::reverse_iterator;
|
|
using std::reverse_bidirectional_iterator;
|
|
|
|
using std::istream_iterator;
|
|
using std::ostream_iterator;
|
|
|
|
// Names from stl_construct.h
|
|
using std::construct;
|
|
using std::destroy;
|
|
|
|
// Names from stl_raw_storage_iter.h
|
|
using std::raw_storage_iterator;
|
|
|
|
#endif /* _CPP_BACKWARD_ITERATOR_H */
|
|
|
|
// Local Variables:
|
|
// mode:C++
|
|
// End:
|