~vibhavp/ubuntu/saucy/urg/merge-from-debian

« back to all changes in this revision

Viewing changes to include/cpp/LockGuard.h

  • Committer: Bazaar Package Importer
  • Author(s): Albert Huang
  • Date: 2011-05-20 11:33:03 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110520113303-u8niofzwzcea0osk
Tags: 0.8.12-1
* New upstream release (closes: #624987)
* Add debian/watch file
* Bump standards-version to 3.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
  \author Satofumi KAMIMURA
9
9
 
10
 
  $Id: LockGuard.h 783 2009-05-05 08:56:26Z satofumi $
 
10
  $Id: LockGuard.h 1949 2011-05-06 07:18:01Z satofumi $
11
11
*/
12
12
 
13
13
#include <memory>
 
14
#include <cstddef>
14
15
 
15
16
 
16
17
namespace qrk
26
27
    LockGuard(const LockGuard& rhs);
27
28
    LockGuard& operator = (const LockGuard& rhs);
28
29
 
29
 
    void* operator new (size_t);
30
 
    void* operator new[] (size_t);
 
30
    //void* operator new (size_t);
 
31
    //void* operator new[] (size_t);
31
32
 
32
33
    struct pImpl;
33
34
    std::auto_ptr<pImpl> pimpl;