[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / Service_Types.inl
blobf7f9359156256bc12fc2ebdcd0543fd6223a73ba
1 // -*- C++ -*-
2 //
3 // $Id: Service_Types.inl 80826 2008-03-04 14:51:23Z wotte $
5 #include "ace/ACE.h"
7 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
9 ACE_INLINE void *
10 ACE_Service_Type_Impl::object (void) const
12   ACE_TRACE ("ACE_Service_Type_Impl::object");
13   return this->obj_;
16 ACE_INLINE const ACE_TCHAR *
17 ACE_Service_Type_Impl::name (void) const
19   ACE_TRACE ("ACE_Service_Type_Impl::name");
20   return this->name_;
23 ACE_INLINE void
24 ACE_Service_Type_Impl::name (const ACE_TCHAR *n)
26   ACE_TRACE ("ACE_Service_Type_Impl::name");
28   ACE::strdelete (const_cast<ACE_TCHAR*> (this->name_));
29   this->name_ = ACE::strnew (n);
32 ACE_END_VERSIONED_NAMESPACE_DECL