summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Introspection/TypeId.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/utility/Utility/Introspection/TypeId.hpp')
-rw-r--r--contrib/utility/Utility/Introspection/TypeId.hpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/contrib/utility/Utility/Introspection/TypeId.hpp b/contrib/utility/Utility/Introspection/TypeId.hpp
deleted file mode 100644
index 51f66f99a0b..00000000000
--- a/contrib/utility/Utility/Introspection/TypeId.hpp
+++ /dev/null
@@ -1,47 +0,0 @@
-// file : Utility/Introspection/TypeId.hpp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-
-#ifndef UTILITY_INTROSPECTION_TYPE_ID_HPP
-#define UTILITY_INTROSPECTION_TYPE_ID_HPP
-
-#include <typeinfo>
-#include <iosfwd>
-
-namespace Utility
-{
- namespace Introspection
- {
- class TypeId
- {
- public:
- template<typename T>
- TypeId (T const& t);
-
- TypeId (std::type_info const& tid);
-
- public:
- bool
- operator == (TypeId const& other) const;
-
- bool
- operator != (TypeId const& other) const;
-
- bool
- operator < (TypeId const& other) const;
-
- friend std::ostream&
- operator << (std::ostream& os, TypeId const& t);
-
- private:
- std::type_info const* tid_;
- };
- }
-}
-
-#include "Utility/Introspection/TypeId.tpp"
-#include "Utility/Introspection/TypeId.ipp"
-
-#endif // UTILITY_INTROSPECTION_TYPE_ID_HPP
-//$Id$