Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Remote_Tokens.inl
blob446a76928cfea8ee1111c92d20fd82bbe8a073b4
1 // -*- C++ -*-
2 #if defined (ACE_HAS_TOKENS_LIBRARY)
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
6 ACE_INLINE
7 ACE_Remote_Mutex::ACE_Remote_Mutex ()
9   ACE_TRACE ("ACE_Remote_Mutex::ACE_Remote_Mutex");
12 ACE_INLINE
13 ACE_Remote_Mutex::ACE_Remote_Mutex (const ACE_TCHAR *token_name,
14                                     int ignore_deadlock,
15                                     int debug)
17   ACE_TRACE ("ACE_Remote_Mutex::ACE_Remote_Mutex");
18   this->open (token_name, ignore_deadlock, debug);
21 // ************************************************************
23 ACE_INLINE
24 ACE_Remote_RLock::ACE_Remote_RLock (const ACE_TCHAR *token_name,
25                                     int ignore_deadlock,
26                                     int debug)
28   ACE_TRACE ("ACE_Remote_RLock::ACE_Remote_RLock");
29   this->open (token_name, ignore_deadlock, debug);
32 // ************************************************************
34 ACE_INLINE
35 ACE_Remote_WLock::ACE_Remote_WLock (const ACE_TCHAR *token_name,
36                                     int ignore_deadlock,
37                                     int debug)
39   ACE_TRACE ("ACE_Remote_WLock::ACE_Remote_WLock");
40   this->open (token_name, ignore_deadlock, debug);
43 ACE_END_VERSIONED_NAMESPACE_DECL
45 #endif /* ACE_HAS_TOKENS_LIBRARY */