CrystalClear Software Home Library Home Documentation Index

PrevUpHomeNext

Class template counted_time_system

boost::date_time::counted_time_system — An unadjusted time system implementation.

Synopsis

template<typename time_rep> 
class counted_time_system {
public:
  // types
  typedef time_rep                                    time_rep_type;          
  typedef time_rep_type::impl_type                    impl_type;              
  typedef time_rep_type::time_duration_type           time_duration_type;     
  typedef time_duration_type::fractional_seconds_type fractional_seconds_type;
  typedef time_rep_type::date_type                    date_type;              
  typedef time_rep_type::date_duration_type           date_duration_type;     

  // public static functions
  template<typename T> void unused_var(const T &) ;
  time_rep_type 
  get_time_rep(const date_type &, const time_duration_type &, 
               date_time::dst_flags = not_dst) ;
  time_rep_type get_time_rep(special_values) ;
  date_type get_date(const time_rep_type &) ;
  time_duration_type get_time_of_day(const time_rep_type &) ;
  std::string zone_name(const time_rep_type &) ;
  bool is_equal(const time_rep_type &, const time_rep_type &) ;
  bool is_less(const time_rep_type &, const time_rep_type &) ;
  time_rep_type add_days(const time_rep_type &, const date_duration_type &) ;
  time_rep_type 
  subtract_days(const time_rep_type &, const date_duration_type &) ;
  time_rep_type 
  subtract_time_duration(const time_rep_type &, const time_duration_type &) ;
  time_rep_type add_time_duration(const time_rep_type &, time_duration_type) ;
  time_duration_type 
  subtract_times(const time_rep_type &, const time_rep_type &) ;
};

Description

counted_time_system public static functions

  1. template<typename T> void unused_var(const T & ) ;
  2. time_rep_type 
    get_time_rep(const date_type & day, const time_duration_type & tod, 
                 date_time::dst_flags dst = not_dst) ;
  3. time_rep_type get_time_rep(special_values sv) ;
  4. date_type get_date(const time_rep_type & val) ;
  5. time_duration_type get_time_of_day(const time_rep_type & val) ;
  6. std::string zone_name(const time_rep_type & ) ;
  7. bool is_equal(const time_rep_type & lhs, const time_rep_type & rhs) ;
  8. bool is_less(const time_rep_type & lhs, const time_rep_type & rhs) ;
  9. time_rep_type 
    add_days(const time_rep_type & base, const date_duration_type & dd) ;
  10. time_rep_type 
    subtract_days(const time_rep_type & base, const date_duration_type & dd) ;
  11. time_rep_type 
    subtract_time_duration(const time_rep_type & base, 
                           const time_duration_type & td) ;
  12. time_rep_type 
    add_time_duration(const time_rep_type & base, time_duration_type td) ;
  13. time_duration_type 
    subtract_times(const time_rep_type & lhs, const time_rep_type & rhs) ;
Copyright © 2001-2005 CrystalClear Software, Inc

PrevUpHomeNext