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)
|
|
|
|
//
|
2010-07-14 08:15:33 +00:00
|
|
|
// See http://www.boost.org/libs/optional for documentation.
|
2003-11-28 14:36:21 +00:00
|
|
|
//
|
|
|
|
// You are welcome to contact the author at:
|
|
|
|
// fernando_cacciola@hotmail.com
|
|
|
|
//
|
2008-04-27 21:07:10 +00:00
|
|
|
// Revisions:
|
2008-05-10 14:42:49 +00:00
|
|
|
// 10 May 2008 (added swap related forward declaration) Niels Dekker
|
2014-04-22 22:36:19 +02:00
|
|
|
//
|
2004-07-07 15:13:25 +00:00
|
|
|
#ifndef BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
|
|
|
|
#define BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
|
2014-04-22 22:36:19 +02:00
|
|
|
|
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
|
|
|
|
2014-04-29 01:06:14 +02:00
|
|
|
template<class T> void swap ( optional<T>& , optional<T>& );
|
2008-04-27 21:07:10 +00:00
|
|
|
|
2008-05-10 14:42:49 +00:00
|
|
|
template<class T> struct optional_swap_should_use_default_constructor ;
|
|
|
|
|
2003-11-28 14:36:21 +00:00
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|