summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
commit0efa7c32aaf21a29b42b5926cc116007056843be (patch)
tree882f663a5dd0e65694bf6077b71086dd77fd7ff8 /3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp
parent1d20eabbc32274b491b4c2bedf73d19933d97bfd (diff)
downloadswift-0efa7c32aaf21a29b42b5926cc116007056843be.zip
swift-0efa7c32aaf21a29b42b5926cc116007056843be.tar.bz2
Moved some modules into separate git modules.
Diffstat (limited to '3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp')
m---------3rdParty/Boost0
-rw-r--r--3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp47
2 files changed, 0 insertions, 47 deletions
diff --git a/3rdParty/Boost b/3rdParty/Boost
new file mode 160000
+Subproject 3bbdbc8cf1996f23d9a366da8bac0f97be6ad79
diff --git a/3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp b/3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp
deleted file mode 100644
index b8b1f5a..0000000
--- a/3rdParty/Boost/boost/date_time/gregorian/greg_calendar.hpp
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef GREGORIAN_GREGORIAN_CALENDAR_HPP__
-#define GREGORIAN_GREGORIAN_CALENDAR_HPP__
-
-/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
- * Use, modification and distribution is subject to the
- * Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
- * Author: Jeff Garland
- * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
- */
-
-#include "boost/date_time/gregorian/greg_weekday.hpp"
-#include "boost/date_time/gregorian/greg_day_of_year.hpp"
-#include "boost/date_time/gregorian_calendar.hpp"
-#include "boost/date_time/gregorian/greg_ymd.hpp"
-#include "boost/date_time/int_adapter.hpp"
-
-namespace boost {
-namespace gregorian {
-
- //!An internal date representation that includes infinities, not a date
- typedef date_time::int_adapter<unsigned long> fancy_date_rep;
-
- //! Gregorian calendar for this implementation, hard work in the base
- class gregorian_calendar :
- public date_time::gregorian_calendar_base<greg_year_month_day, fancy_date_rep::int_type> {
- public:
- //! Type to hold a weekday (eg: Sunday, Monday,...)
- typedef greg_weekday day_of_week_type;
- //! Counter type from 1 to 366 for gregorian dates.
- typedef greg_day_of_year_rep day_of_year_type;
- //! Internal date representation that handles infinity, not a date
- typedef fancy_date_rep date_rep_type;
- //! Date rep implements the traits stuff as well
- typedef fancy_date_rep date_traits_type;
-
-
- private:
- };
-
-} } //namespace gregorian
-
-
-
-
-#endif
-