1 #ifndef DATE_TIME_GREG_YMD_HPP__
2 #define DATE_TIME_GREG_YMD_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$
10  */
11 
12 #include "boost/date_time/year_month_day.hpp"
13 #include "boost/date_time/special_defs.hpp"
14 #include "boost/date_time/gregorian/greg_day.hpp"
15 #include "boost/date_time/gregorian/greg_year.hpp"
16 #include "boost/date_time/gregorian/greg_month.hpp"
17 
18 namespace boost {
19 namespace gregorian {
20 
21   typedef date_time::year_month_day_base<greg_year,
22                                          greg_month,
23                                          greg_day> greg_year_month_day;
24 
25 
26 
27 } } //namespace gregorian
28 
29 
30 
31 
32 #endif
33 
34