/* Copyright (c) 1997-2008
   Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
   http://www.math.tu-berlin.de/polymake,  mailto:polymake@math.tu-berlin.de

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version: http://www.gnu.org/licenses/gpl.txt.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
*/

#ifndef _POLYMAKE_STD_SET
#define _POLYMAKE_STD_SET "$Project: polymake $$Id: set 8863 2008-10-24 22:56:00Z gawrilow $"

#include_next <set>

#ifndef _POLYMAKE_TREE_ITERATORS_H
#  include <tree_iterators.h>
#endif

namespace pm {

template <typename K, typename Compare, typename Alloc>
struct spec_object_traits< std::set<K,Compare,Alloc> >
   : spec_object_traits<is_container> {
   static const IO_separator_kind IO_separator=IO_sep_inherit;
};

} // end namespace pm

#endif // _POLYMAKE_STD_SET

// Local Variables:
// mode:C++
// End:
