summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/libs/date_time/src/gregorian/greg_weekday.cpp')
m---------3rdParty/Boost0
-rw-r--r--3rdParty/Boost/libs/date_time/src/gregorian/greg_weekday.cpp50
2 files changed, 0 insertions, 50 deletions
diff --git a/3rdParty/Boost b/3rdParty/Boost
new file mode 160000
+Subproject 3bbdbc8cf1996f23d9a366da8bac0f97be6ad79
diff --git a/3rdParty/Boost/libs/date_time/src/gregorian/greg_weekday.cpp b/3rdParty/Boost/libs/date_time/src/gregorian/greg_weekday.cpp
deleted file mode 100644
index 4057d29..0000000
--- a/3rdParty/Boost/libs/date_time/src/gregorian/greg_weekday.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/* Copyright (c) 2002-2004 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, Bart Garst
- * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
- */
-
-
-
-#ifndef BOOST_DATE_TIME_SOURCE
-#define BOOST_DATE_TIME_SOURCE
-#endif
-#include "boost/date_time/gregorian/greg_weekday.hpp"
-
-#include "greg_names.hpp"
-
-namespace boost {
-namespace gregorian {
-
- //! Return a 3 digit english string of the day of week (eg: Sun)
- const char*
- greg_weekday::as_short_string() const
- {
- return short_weekday_names[value_];
- }
- //! Return a point to a long english string representing day of week
- const char*
- greg_weekday::as_long_string() const
- {
- return long_weekday_names[value_];
- }
-
-#ifndef BOOST_NO_STD_WSTRING
- //! Return a 3 digit english wchar_t string of the day of week (eg: Sun)
- const wchar_t*
- greg_weekday::as_short_wstring() const
- {
- return w_short_weekday_names[value_];
- }
- //! Return a point to a long english wchar_t string representing day of week
- const wchar_t*
- greg_weekday::as_long_wstring() const
- {
- return w_long_weekday_names[value_];
- }
-#endif // BOOST_NO_STD_WSTRING
-
-} } //namespace gregorian
-