source: XIOS/dev/dev_olga/src/extern/boost/include/boost/date_time/year_month_day.hpp @ 1022

Last change on this file since 1022 was 1022, checked in by mhnguyen, 7 years ago
File size: 1.3 KB
Line 
1#ifndef YearMonthDayBase_HPP__
2#define YearMonthDayBase_HPP__
3
4/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
5 * Use, modification and distribution is subject to the
6 * Boost Software License, Version 1.0. (See accompanying
7 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
8 * Author: Jeff Garland
9 * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
10 */
11
12namespace boost {
13namespace date_time {
14
15  //! Allow rapid creation of ymd triples of different types
16  template<typename YearType, typename MonthType, typename DayType>
17  struct year_month_day_base {
18    year_month_day_base(YearType  year, 
19                        MonthType month,
20                        DayType   day);
21    YearType year;
22    MonthType month;
23    DayType day;
24    typedef YearType  year_type;
25    typedef MonthType month_type;
26    typedef DayType   day_type;
27  };
28 
29 
30  //! A basic constructor
31  template<typename YearType, typename MonthType, typename DayType>
32  inline
33  year_month_day_base<YearType,MonthType,DayType>::year_month_day_base(YearType y, 
34                                                                       MonthType m,
35                                                                       DayType d) :
36    year(y),
37    month(m),
38    day(d)
39  {}
40 
41} }//namespace date_time
42
43
44#endif
45
Note: See TracBrowser for help on using the repository browser.