~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to boost/boost/detail/lwm_nop.hpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BOOST_DETAIL_LWM_NOP_HPP_INCLUDED
 
2
#define BOOST_DETAIL_LWM_NOP_HPP_INCLUDED
 
3
 
 
4
#if _MSC_VER >= 1020
 
5
#pragma once
 
6
#endif
 
7
 
 
8
//
 
9
//  boost/detail/lwm_nop.hpp
 
10
//
 
11
//  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
 
12
//
 
13
//  Permission to copy, use, modify, sell and distribute this software
 
14
//  is granted provided this copyright notice appears in all copies.
 
15
//  This software is provided "as is" without express or implied
 
16
//  warranty, and with no claim as to its suitability for any purpose.
 
17
//
 
18
 
 
19
namespace boost
 
20
{
 
21
 
 
22
namespace detail
 
23
{
 
24
 
 
25
class lightweight_mutex
 
26
{
 
27
public:
 
28
 
 
29
    typedef lightweight_mutex scoped_lock;
 
30
};
 
31
 
 
32
} // namespace detail
 
33
 
 
34
} // namespace boost
 
35
 
 
36
#endif // #ifndef BOOST_DETAIL_LWM_NOP_HPP_INCLUDED