time_period.hpp 690 B

1234567891011121314151617181920212223242526272829
  1. #ifndef POSIX_TIME_PERIOD_HPP___
  2. #define POSIX_TIME_PERIOD_HPP___
  3. /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
  4. * Use, modification and distribution is subject to the
  5. * Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. * Author: Jeff Garland
  8. * $Date$
  9. */
  10. #include "boost/date_time/period.hpp"
  11. #include "boost/date_time/posix_time/posix_time_duration.hpp"
  12. #include "boost/date_time/posix_time/ptime.hpp"
  13. namespace boost {
  14. namespace posix_time {
  15. //! Time period type
  16. /*! \ingroup time_basics
  17. */
  18. typedef date_time::period<ptime, time_duration> time_period;
  19. } }//namespace posix_time
  20. #endif