Directory Structure [step 1]: moving files

working on #672

NOTE: This commit can't be compiled!!
This commit is contained in:
Yehonal
2017-10-12 20:00:52 +02:00
parent 4df28fd29c
commit f06f32849f
2508 changed files with 0 additions and 1325 deletions

48
deps/acelite/ace/Shared_Object.cpp vendored Normal file
View 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