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

32
deps/acelite/ace/Time_Policy.cpp vendored Normal file
View File

@@ -0,0 +1,32 @@
#include "ace/Time_Policy.h"
#if !defined(__ACE_INLINE__)
# include "ace/Time_Policy.inl"
#endif /* __ACE_INLINE__ */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_Dynamic_Time_Policy_Base::~ACE_Dynamic_Time_Policy_Base ()
{
}
class NULL_Time_Policy : public ACE_Dynamic_Time_Policy_Base
{
protected:
virtual ACE_Time_Value_T<ACE_Delegating_Time_Policy> gettimeofday () const;
};
ACE_Time_Value_T<ACE_Delegating_Time_Policy> NULL_Time_Policy::gettimeofday () const
{
return ACE_Time_Value_T<ACE_Delegating_Time_Policy> (ACE_Time_Value::zero);
}
static NULL_Time_Policy null_policy_;
ACE_Delegating_Time_Policy::ACE_Delegating_Time_Policy (ACE_Dynamic_Time_Policy_Base const * delegate)
: delegate_ (delegate != 0 ? delegate : &null_policy_)
{
}
ACE_END_VERSIONED_NAMESPACE_DECL