This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/set

164 lines
5.2 KiB
Plaintext

///////////////////////////////////////////////////////////////////////////
// FILE: set (...)
//
// =========================================================================
//
// Open Watcom Project
//
// Copyright (c) 2004-2010 The Open Watcom Contributors. All Rights Reserved.
//
// This file is automatically generated. Do not edit directly.
//
// =========================================================================
//
// Description: This header is part of the C++ standard library.
///////////////////////////////////////////////////////////////////////////
#ifndef _SET_INCLUDED
#define _SET_INCLUDED
#ifndef _ENABLE_AUTODEPEND
#pragma read_only_file;
#endif
#ifndef __cplusplus
#error This header file requires C++
#endif
#ifndef __RBTREE_H_INCLUDED
#include <_rbtree.h>
#endif
#ifndef _UTIILITY_INCLUDED
#include <utility>
#endif
#ifndef _MEMORY_INCLUDED
#include <memory>
#endif
#ifndef _ITERATOR_INCLUDED
#include <iterator>
#endif
#ifndef _FUNCTIONAL_INCLUDED
#include <function>
#endif
namespace std {
//associative container set, as defined in incits/iso/iec14882-2003
template< class Key,
class Compare = less< Key >,
class Allocator = allocator< Key >,
class Implementation = _ow::RedBlackTree< Key, Compare, Allocator,
_ow::TreeKeyWrapper<Key> > >
class set : public Implementation{
public:
typedef Key key_type;
typedef Key value_type;
typedef Compare key_compare;
typedef Compare value_compare;
typedef Allocator allocator_type;
typedef typename Allocator::reference reference;
typedef typename Allocator::const_reference const_reference;
typedef typename Allocator::pointer pointer;
typedef typename Allocator::const_pointer const_pointer;
explicit set(const Compare& comp = Compare(), const Allocator& = Allocator());
template< class InputIterator >
set( InputIterator first,
InputIterator last,
Compare const & c, //= Compare(),
Allocator const & a )// = Allocator() )
: Implementation( first, last, c, a )
{ }
set( const set& x ) : Implementation( x ) {}
~set(){}
set& operator=( set const & x )
{ Implementation::operator=( x ); return( *this ); }
}; //template class set
/* ==================================================================
* member functions
*/
/* ------------------------------------------------------------------
* ctors
*/
template< class Key, class Compare, class Allocator, class Implementation >
set< Key, Compare, Allocator, Implementation >::set(
const Compare& c,
const Allocator& a ) : Implementation( c, a )
{
//cout<<"explicit set::ctor\n";
}
template<class Key, class Compare, class Allocator>
bool operator==(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
template<class Key, class Compare, class Allocator>
bool operator!=(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
template<class Key, class Compare, class Allocator>
bool operator<(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
template<class Key, class Compare, class Allocator>
bool operator>(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
template<class Key, class Compare, class Allocator>
bool operator>=(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
template<class Key, class Compare, class Allocator>
bool operator<=(const set<Key,Compare,Allocator>& x,
const set<Key,Compare,Allocator>& y);
//specialised algo
template<class Key, class Compare, class Allocator>
void swap(set<Key,Compare,Allocator>& x,
set<Key,Compare,Allocator>& y);
/* ==================================================================
* class multiset
*/
template< class Key,
class Compare = less< Key >,
class Allocator = allocator< Key >,
class Implementation = _ow::MultiListRBTree< Key, Compare, Allocator,
_ow::ListTreeKeyWrapper<Key> > >
class multiset : public Implementation{
public:
typedef Key key_type;
typedef Key value_type;
typedef Compare key_compare;
typedef Compare value_compare;
typedef Allocator allocator_type;
typedef typename Allocator::reference reference;
typedef typename Allocator::const_reference const_reference;
typedef typename Allocator::pointer pointer;
typedef typename Allocator::const_pointer const_pointer;
explicit multiset( const Compare& c = Compare(),
const Allocator& a = Allocator() ) : Implementation( c, a ) {}
};//class multiset
} // namespace std
#endif