Sha256: 5a5b75d1e9b9396f647c11e8851e8dee27ec77d20b84feda6d7440eb4a1036f9

Contents?: true

Size: 1.36 KB

Versions: 36

Compression:

Stored size: 1.36 KB

Contents

//  Boost noncopyable.hpp header file  --------------------------------------//

//  (C) Copyright Beman Dawes 1999-2003. Distributed under 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/libs/utility for documentation.

#ifndef BOOST_CORE_NONCOPYABLE_HPP
#define BOOST_CORE_NONCOPYABLE_HPP

#include <boost/config.hpp>

namespace boost {

//  Private copy constructor and copy assignment ensure classes derived from
//  class noncopyable cannot be copied.

//  Contributed by Dave Abrahams

namespace noncopyable_  // protection from unintended ADL
{
  class noncopyable
  {
  protected:
#if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) && !defined(BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS)
      BOOST_CONSTEXPR noncopyable() = default;
      ~noncopyable() = default;
#else
      noncopyable() {}
      ~noncopyable() {}
#endif
#if !defined(BOOST_NO_CXX11_DELETED_FUNCTIONS)
      noncopyable( const noncopyable& ) = delete;
      noncopyable& operator=( const noncopyable& ) = delete;
#else
  private:  // emphasize the following members are private
      noncopyable( const noncopyable& );
      noncopyable& operator=( const noncopyable& );
#endif
  };
}

typedef noncopyable_::noncopyable noncopyable;

} // namespace boost

#endif  // BOOST_CORE_NONCOPYABLE_HPP

Version data entries

36 entries across 36 versions & 3 rubygems

Version Path
passenger-6.0.2 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-6.0.1 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-6.0.0 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.7 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.6 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.5 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.4 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.3 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.2 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.1 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.3.0 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.2.3 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.2.2 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.2.1 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.2.0 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.1.12 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.1.11 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.1.10 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.1.9 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp
passenger-5.1.8 src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp