diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-30 19:34:27 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-30 19:34:27 +0000 |
commit | 03154c9a5b9e8628d31bd9032549327d51304645 (patch) | |
tree | f4f85e04edaef6ed998a7953275ad3dcf1911fef /ace/Module.i | |
parent | 73efbc1d2ad02533d865e1b14008ffc8d8bc82fb (diff) | |
download | ATCD-pre_multiple_profile_server.tar.gz |
This commit was manufactured by cvs2svn to create tagpre_multiple_profile_server
'pre_multiple_profile_server'.
Diffstat (limited to 'ace/Module.i')
-rw-r--r-- | ace/Module.i | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/ace/Module.i b/ace/Module.i deleted file mode 100644 index d13b06feb0c..00000000000 --- a/ace/Module.i +++ /dev/null @@ -1,62 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// Module.i - -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 ASYS_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 ASYS_TCHAR *n) -{ - ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::name"); - ACE_OS::strncpy (this->name_, n, MAXNAMLEN); -} - -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; -} - - |