]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/signals2/include/boost/signals2/detail/lwm_nop.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / signals2 / include / boost / signals2 / detail / lwm_nop.hpp
CommitLineData
7c673cae
FG
1//
2// boost/signals2/detail/lwm_nop.hpp
3//
4// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
5// Copyright (c) 2008 Frank Mori Hess
6//
7// Distributed under the Boost Software License, Version 1.0. (See
8// accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11
12#ifndef BOOST_SIGNALS2_LWM_NOP_HPP
13#define BOOST_SIGNALS2_LWM_NOP_HPP
14
15// MS compatible compilers support #pragma once
16
17#if defined(_MSC_VER)
18# pragma once
19#endif
20
21
22#include <boost/signals2/dummy_mutex.hpp>
23
24namespace boost
25{
26
27namespace signals2
28{
29
30class mutex: public dummy_mutex
31{
32};
33
34} // namespace signals2
35
36} // namespace boost
37
38#endif // #ifndef BOOST_SIGNALS2_LWM_NOP_HPP