summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Hetero/TypeList.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/utility/Utility/Hetero/TypeList.hpp')
-rw-r--r--contrib/utility/Utility/Hetero/TypeList.hpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/contrib/utility/Utility/Hetero/TypeList.hpp b/contrib/utility/Utility/Hetero/TypeList.hpp
deleted file mode 100644
index ee7e96c2bcd..00000000000
--- a/contrib/utility/Utility/Hetero/TypeList.hpp
+++ /dev/null
@@ -1,46 +0,0 @@
-// file : Utility/Hetero/TypeList.hpp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-
-#ifndef UTILITY_HETERO_TYPE_LIST_HPP
-#define UTILITY_HETERO_TYPE_LIST_HPP
-
-namespace Utility
-{
- namespace Hetero
- {
- class NullType {};
-
- template <typename t0 = NullType,
- typename t1 = NullType,
- typename t2 = NullType>
- struct TypeList
- {
- typedef t0 T0;
- typedef t1 T1;
- typedef t2 T2;
- };
-
- template <typename t0, typename t1>
- struct TypeList<t0, t1, NullType>
- {
- typedef t0 T0;
- typedef t1 T1;
- };
-
- template <typename t0>
- struct TypeList<t0, NullType, NullType>
- {
- typedef t0 T0;
- };
-
- template <>
- struct TypeList<NullType, NullType, NullType>
- {
- };
- }
-}
-
-#endif // UTILITY_HETERO_TYPE_LIST_HPP
-//$Id$