|
||||
File indexing completed on 2025-01-18 09:51:40
0001 // 0002 // boost/signals2/detail/lwm_nop.hpp 0003 // 0004 // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. 0005 // Copyright (c) 2008 Frank Mori Hess 0006 // 0007 // Distributed under the Boost Software License, Version 1.0. (See 0008 // accompanying file LICENSE_1_0.txt or copy at 0009 // http://www.boost.org/LICENSE_1_0.txt) 0010 // 0011 0012 #ifndef BOOST_SIGNALS2_LWM_NOP_HPP 0013 #define BOOST_SIGNALS2_LWM_NOP_HPP 0014 0015 // MS compatible compilers support #pragma once 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 } // namespace signals2 0035 0036 } // namespace boost 0037 0038 #endif // #ifndef BOOST_SIGNALS2_LWM_NOP_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |