mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Rebase resync
This commit is contained in:
parent
a0797532e8
commit
1997c1e903
3106 changed files with 11118 additions and 627576 deletions
|
|
@ -1,50 +0,0 @@
|
|||
// $Id: Shared_Object.cpp 91286 2010-08-05 09:04:31Z johnnyw $
|
||||
|
||||
#include "ace/Shared_Object.h"
|
||||
#include "ace/Global_Macros.h"
|
||||
#include "ace/config-all.h"
|
||||
|
||||
/* Provide the abstract base class used to access dynamic linking
|
||||
facilities */
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Shared_Object.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
// Initializes object when dynamic linking occurs.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::init (int, ACE_TCHAR *[])
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::init");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Terminates object when dynamic unlinking occurs.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::fini (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::fini");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Returns information on active object.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::info (ACE_TCHAR **, size_t) const
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::info");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Need to give a default implementation.
|
||||
|
||||
ACE_Shared_Object::~ACE_Shared_Object (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::~ACE_Shared_Object");
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue