aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/Module.inl
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 15:35:07 -0700
committermaximius <none@none>2009-10-17 15:35:07 -0700
commit26b5e033ffde3d161382fc9addbfa99738379641 (patch)
treea344f369ca32945f787a02dee35c3dbe342bed7e /dep/ACE_wrappers/ace/Module.inl
parentf21f47005dcb6b76e1abc9f35fbcd03eed191bff (diff)
*Massive cleanup (\n\n -> \n, *\n -> \n, cleanup for(...) to for (...), and some other cleanups by hand)
*Fix a possible crash in Spell::DoAllEffectOnTarget --HG-- branch : trunk
Diffstat (limited to 'dep/ACE_wrappers/ace/Module.inl')
-rw-r--r--dep/ACE_wrappers/ace/Module.inl11
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