Warning, file /include/boost/signals2/detail/lwm_nop.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_SIGNALS2_LWM_NOP_HPP
0013 #define BOOST_SIGNALS2_LWM_NOP_HPP
0014
0015
0016
0017 #if defined(_MSC_VER)
0018 # pragma once
0019 #endif
0020
0021
0022 #include <boost/signals2/dummy_mutex.hpp>
0023
0024 namespace boost
0025 {
0026
0027 namespace signals2
0028 {
0029
0030 class mutex: public dummy_mutex
0031 {
0032 };
0033
0034 }
0035
0036 }
0037
0038 #endif