Program Listing for File duration.hpp

Return to documentation for file (/tmp/ws/src/ecl_core/ecl_time/include/ecl/time/duration.hpp)

/*****************************************************************************
** Ifdefs
*****************************************************************************/

#ifndef ECL_TIME_DURATION_HPP_
#define ECL_TIME_DURATION_HPP_

/*****************************************************************************
** Cross Platform Functionality
*****************************************************************************/

#include <ecl/config/ecl.hpp>

/*****************************************************************************
** Includes
*****************************************************************************/

#if defined(ECL_IS_POSIX)
    #include "timestamp_pos.hpp"
#elif defined(ECL_IS_WIN32)
    #include "timestamp_win.hpp"
#endif

namespace ecl {

    typedef TimeStamp Duration;

} // namespace ecl

#endif /* ECL_TIME_DURATION_HPP */