2008-04-27 21:07:10 +00:00
|
|
|
// Copyright (C) 2003, 2008 Fernando Luis Cacciola Carballal.
|
2003-11-28 14:36:21 +00:00
|
|
|
//
|
|
|
|
// Use, modification, and distribution is subject to the Boost Software
|
|
|
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
// See http://www.boost.org/lib/optional for documentation.
|
|
|
|
//
|
|
|
|
// You are welcome to contact the author at:
|
|
|
|
// fernando_cacciola@hotmail.com
|
|
|
|
//
|
2008-04-27 21:07:10 +00:00
|
|
|
// Revisions:
|
|
|
|
// 27 Apr 2008 (added forward declaration of boost::swap overload) Niels Dekker
|
|
|
|
//
|
2004-07-07 15:13:25 +00:00
|
|
|
#ifndef BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
|
|
|
|
#define BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
|
2003-11-28 14:36:21 +00:00
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
|
2004-07-07 15:13:25 +00:00
|
|
|
template<class T> class optional ;
|
2003-11-28 14:36:21 +00:00
|
|
|
|
2008-04-27 21:07:10 +00:00
|
|
|
template<class T> void swap ( optional<T>& , optional<T>& ) ;
|
|
|
|
|
2003-11-28 14:36:21 +00:00
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|