diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/Module.inl')
-rw-r--r-- | dep/ACE_wrappers/ace/Module.inl | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/dep/ACE_wrappers/ace/Module.inl b/dep/ACE_wrappers/ace/Module.inl index 62e4929a24b..31146f390af 100644 --- a/dep/ACE_wrappers/ace/Module.inl +++ b/dep/ACE_wrappers/ace/Module.inl @@ -1,65 +1,54 @@ // -*- C++ -*- // // $Id: Module.inl 80826 2008-03-04 14:51:23Z wotte $ - #include "ace/OS_NS_string.h" - ACE_BEGIN_VERSIONED_NAMESPACE_DECL - template <ACE_SYNCH_DECL> ACE_INLINE void * ACE_Module<ACE_SYNCH_USE>::arg (void) const { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::arg"); return this->arg_; } - template <ACE_SYNCH_DECL> ACE_INLINE void ACE_Module<ACE_SYNCH_USE>::arg (void *a) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::arg"); this->arg_ = a; } - template <ACE_SYNCH_DECL> ACE_INLINE const ACE_TCHAR * ACE_Module<ACE_SYNCH_USE>::name (void) const { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::name"); return this->name_; } - template <ACE_SYNCH_DECL> ACE_INLINE void ACE_Module<ACE_SYNCH_USE>::name (const ACE_TCHAR *n) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::name"); ACE_OS::strsncpy (this->name_, n, MAXPATHLEN); } - template <ACE_SYNCH_DECL> ACE_INLINE ACE_Task<ACE_SYNCH_USE> * ACE_Module<ACE_SYNCH_USE>::writer (void) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::writer"); return this->q_pair_[1]; } - template <ACE_SYNCH_DECL> ACE_INLINE ACE_Task<ACE_SYNCH_USE> * ACE_Module<ACE_SYNCH_USE>::reader (void) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::reader"); return this->q_pair_[0]; } - template <ACE_SYNCH_DECL> ACE_INLINE ACE_Module<ACE_SYNCH_USE> * ACE_Module<ACE_SYNCH_USE>::next (void) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::next"); return this->next_; } - template <ACE_SYNCH_DECL> ACE_INLINE void ACE_Module<ACE_SYNCH_USE>::next (ACE_Module<ACE_SYNCH_USE> *m) { ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::next"); this->next_ = m; } - ACE_END_VERSIONED_NAMESPACE_DECL |