Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:35:19

0001 #ifndef DATE_TIME_GREG_YMD_HPP__
0002 #define DATE_TIME_GREG_YMD_HPP__
0003 
0004 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
0005  * Use, modification and distribution is subject to the 
0006  * Boost Software License, Version 1.0. (See accompanying
0007  * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
0008  * Author: Jeff Garland 
0009  * $Date$
0010  */
0011 
0012 #include "boost/date_time/year_month_day.hpp"
0013 #include "boost/date_time/special_defs.hpp"
0014 #include "boost/date_time/gregorian/greg_day.hpp"
0015 #include "boost/date_time/gregorian/greg_year.hpp"
0016 #include "boost/date_time/gregorian/greg_month.hpp"
0017 
0018 namespace boost {
0019 namespace gregorian {
0020   
0021   typedef date_time::year_month_day_base<greg_year, 
0022                                          greg_month, 
0023                                          greg_day> greg_year_month_day;
0024   
0025   
0026   
0027 } } //namespace gregorian
0028 
0029 
0030 
0031 
0032 #endif
0033