summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/boost/date_time/time_defs.hpp')
m---------3rdParty/Boost0
-rw-r--r--3rdParty/Boost/boost/date_time/time_defs.hpp43
2 files changed, 0 insertions, 43 deletions
diff --git a/3rdParty/Boost b/3rdParty/Boost
new file mode 160000
+Subproject 3bbdbc8cf1996f23d9a366da8bac0f97be6ad79
diff --git a/3rdParty/Boost/boost/date_time/time_defs.hpp b/3rdParty/Boost/boost/date_time/time_defs.hpp
deleted file mode 100644
index 55fe42a..0000000
--- a/3rdParty/Boost/boost/date_time/time_defs.hpp
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef DATE_TIME_TIME_PRECISION_LIMITS_HPP
-#define DATE_TIME_TIME_PRECISION_LIMITS_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-11-12 14:37:53 -0500 (Wed, 12 Nov 2008) $
- */
-
-
-
-/*! \file time_defs.hpp
- This file contains nice definitions for handling the resoluion of various time
- reprsentations.
-*/
-
-namespace boost {
-namespace date_time {
-
- //!Defines some nice types for handling time level resolutions
- enum time_resolutions {
- sec,
- tenth,
- hundreth, // deprecated misspelled version of hundredth
- hundredth = hundreth,
- milli,
- ten_thousandth,
- micro,
- nano,
- NumResolutions
- };
-
- //! Flags for daylight savings or summer time
- enum dst_flags {not_dst, is_dst, calculate};
-
-
-} } //namespace date_time
-
-
-
-#endif