Imported Upstream version 1.57.0
[platform/upstream/boost.git] / boost / signals2 / detail / lwm_nop.hpp
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
24 namespace boost
25 {
26
27 namespace signals2
28 {
29
30 class mutex: public dummy_mutex
31 {
32 };
33
34 } // namespace signals2
35
36 } // namespace boost
37
38 #endif // #ifndef BOOST_SIGNALS2_LWM_NOP_HPP