Advertisement
voidpointer

Untitled

Feb 20th, 2013
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. class Mutex
  2. {
  3. public:
  4.     class Lock;
  5.     // ... etc ....
  6. };
  7.  
  8. class Mutex::Lock
  9. {
  10. public:
  11.     // ... etc ....
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement