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
0005
0006
0007
0008
0009
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 } }
0028
0029
0030
0031
0032 #endif
0033