Update contrib.
1 // Copyright David Abrahams 2002.
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 #ifndef SLICE_NIL_DWA2002620_HPP
6 # define SLICE_NIL_DWA2002620_HPP
8 # include <boost/python/detail/prefix.hpp>
9 # include <boost/python/object_core.hpp>
11 namespace boost { namespace python { namespace api {
13 class slice_nil : public object
16 slice_nil() : object() {}
19 # ifndef _ // Watch out for GNU gettext users, who #define _(x)
20 static const slice_nil _ = slice_nil();
30 struct slice_bound<slice_nil>
32 typedef slice_nil type;
38 # ifndef _ // Watch out for GNU gettext users, who #define _(x)
42 }} // namespace boost::python
44 #endif // SLICE_NIL_DWA2002620_HPP