2004-07-07 15:04:52 +00:00
|
|
|
// Copyright (C) 2003, Fernando Luis Cacciola Carballal.
|
|
|
|
//
|
2006-07-20 23:23:09 +00:00
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
2004-07-07 15:04:52 +00:00
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
2007-11-25 18:07:19 +00:00
|
|
|
// See http://www.boost.org/libs/optional for documentation.
|
2004-07-07 15:04:52 +00:00
|
|
|
//
|
|
|
|
// You are welcome to contact the author at:
|
2007-11-25 18:07:19 +00:00
|
|
|
// fernando_cacciola@hotmail.com
|
2004-07-07 15:04:52 +00:00
|
|
|
//
|
|
|
|
#ifndef BOOST_NONE_17SEP2003_HPP
|
|
|
|
#define BOOST_NONE_17SEP2003_HPP
|
|
|
|
|
2007-11-25 18:07:19 +00:00
|
|
|
#include "boost/none_t.hpp"
|
2007-04-12 14:25:21 +00:00
|
|
|
|
2007-11-25 18:07:19 +00:00
|
|
|
// NOTE: Borland users have to include this header outside any precompiled headers
|
|
|
|
// (bcc<=5.64 cannot include instance data in a precompiled header)
|
|
|
|
// -- * To be verified, now that there's no unnamed namespace
|
2007-04-12 14:25:21 +00:00
|
|
|
|
2007-11-25 18:07:19 +00:00
|
|
|
namespace boost {
|
2007-04-12 14:25:21 +00:00
|
|
|
|
2007-11-25 18:07:19 +00:00
|
|
|
none_t const none = ((none_t)0) ;
|
2007-04-12 14:25:21 +00:00
|
|
|
|
2007-11-25 18:07:19 +00:00
|
|
|
} // namespace boost
|
2007-04-12 14:25:21 +00:00
|
|
|
|
2007-04-12 19:43:30 +00:00
|
|
|
#endif
|
2007-11-25 18:07:19 +00:00
|
|
|
|