// $Id$
// Version: $Name$
//
-// Copyright (C) 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
#include <base/numbers.h>
+/**
+ * If the compiler supports the upcoming C++0x standard, allow us to refer
+ * to things in namespace std through namespace std_cxx0x (the namespace
+ * into which we import BOOST components if we don't have C++0x support).
+ */
+#ifdef DEAL_II_CAN_USE_CXX0X
+namespace std_cxx0x = std;
+#endif
+
#endif
// $Id$
// Version: $Name$
//
-// Copyright (C) 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
#include <base/numbers.h>
+/**
+ * If the compiler supports the upcoming C++0x standard, allow us to refer
+ * to things in namespace std through namespace std_cxx0x (the namespace
+ * into which we import BOOST components if we don't have C++0x support).
+ */
+#ifdef DEAL_II_CAN_USE_CXX0X
+namespace std_cxx0x = std;
+#endif
+
#endif
])