os/ossrv/ossrv_pub/boost_apis/boost/none.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (C) 2003, Fernando Luis Cacciola Carballal.
sl@0
     2
// Copyright (C) 2007, Anthony Williams
sl@0
     3
// Copyright (C) 2007, Steven Watanabe, Richard Smith
sl@0
     4
//
sl@0
     5
// Distributed under the Boost Software License, Version 1.0.
sl@0
     6
// (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     7
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
//
sl@0
     9
// See http://www.boost.org/lib/optional/ for documentation.
sl@0
    10
//
sl@0
    11
// You are welcome to contact the author at:
sl@0
    12
// fernando.cacciola@gmail.com
sl@0
    13
//
sl@0
    14
#ifndef BOOST_NONE_17SEP2003_HPP
sl@0
    15
#define BOOST_NONE_17SEP2003_HPP
sl@0
    16
sl@0
    17
namespace boost
sl@0
    18
{
sl@0
    19
  namespace detail
sl@0
    20
  {
sl@0
    21
    class none_helper;
sl@0
    22
  }
sl@0
    23
sl@0
    24
  inline void none(detail::none_helper);
sl@0
    25
sl@0
    26
  namespace detail
sl@0
    27
  {
sl@0
    28
    class none_helper
sl@0
    29
    {
sl@0
    30
    private:
sl@0
    31
      
sl@0
    32
      none_helper( none_helper const& ) {}
sl@0
    33
      
sl@0
    34
      friend void boost::none(none_helper);
sl@0
    35
    };
sl@0
    36
  }
sl@0
    37
sl@0
    38
  typedef void (*none_t)(detail::none_helper);
sl@0
    39
sl@0
    40
  inline void none(detail::none_helper) {}
sl@0
    41
}
sl@0
    42
sl@0
    43
#endif