/*
    C++ Mesh Generation Library
    Copyright (c) 2000echet <eric at bechet dot ca>

    This file is part of the C++ Mesh Generation Library.

    See the NOTICE & LICENSE files for conditions.
*/
//---------------------------------------------------------------------------
#ifndef ITERATOR_CONTAINER_H
#define ITERATOR_CONTAINER_H
//---------------------------------------------------------------------------


#include "mesh_const.h"

#ifdef USE_HASH_TABLE
#include <hash_set>
#endif

#include <set>


using namespace std;



/// container for iterators
template<class IT> class Iterator_Container : public set<IT,Less_Ptr<IT> >
//template<class IT> class Iterator_Container : public hash_set<IT,Hash_Ptr<IT> > // moins efficace que set
{
};


#endif // ITERATOR_CONTAINER_H

 
