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

50
deps/acelite/ace/Time_Value_T.cpp vendored Normal file
View File

@@ -0,0 +1,50 @@
#ifndef ACE_TIME_VALUE_T_CPP
#define ACE_TIME_VALUE_T_CPP
#include "ace/Time_Value_T.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if !defined (__ACE_INLINE__)
#include "ace/Time_Value_T.inl"
#endif /* __ACE_INLINE__ */
#include "ace/OS_Memory.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class TIME_POLICY>
ACE_Time_Value
ACE_Time_Value_T<TIME_POLICY>::now () const
{
return this->time_policy_ ();
}
template <class TIME_POLICY>
ACE_Time_Value
ACE_Time_Value_T<TIME_POLICY>::to_relative_time () const
{
return (*this) - this->time_policy_ ();
}
template <class TIME_POLICY>
ACE_Time_Value
ACE_Time_Value_T<TIME_POLICY>::to_absolute_time () const
{
return (*this) + this->time_policy_ ();
}
template <class TIME_POLICY>
ACE_Time_Value *
ACE_Time_Value_T<TIME_POLICY>::duplicate () const
{
ACE_Time_Value_T<TIME_POLICY> * tmp = 0;
ACE_NEW_RETURN (tmp, ACE_Time_Value_T<TIME_POLICY> (*this), 0);
return tmp;
}
ACE_END_VERSIONED_NAMESPACE_DECL
#endif /* ACE_TIME_VALUE_T_CPP */