mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 12:47:07 +00:00
Directory Structure [step 1]: moving files
working on #672 NOTE: This commit can't be compiled!!
This commit is contained in:
48
deps/acelite/ace/Shared_Object.cpp
vendored
Normal file
48
deps/acelite/ace/Shared_Object.cpp
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user