source: vendor/nemo/current/NEMOGCM/EXTERNAL/XIOS/extern/boost/include/boost/date_time/gregorian/greg_ymd.hpp @ 44

Last change on this file since 44 was 44, checked in by cholod, 12 years ago

Load NEMO_TMP into vendor/nemo/current.

File size: 904 bytes
Line 
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: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
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
18namespace boost {
19namespace 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 
Note: See TracBrowser for help on using the repository browser.