summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Introspection/TypeId.ipp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/utility/Utility/Introspection/TypeId.ipp')
-rw-r--r--contrib/utility/Utility/Introspection/TypeId.ipp37
1 files changed, 0 insertions, 37 deletions
diff --git a/contrib/utility/Utility/Introspection/TypeId.ipp b/contrib/utility/Utility/Introspection/TypeId.ipp
deleted file mode 100644
index 83a5a503517..00000000000
--- a/contrib/utility/Utility/Introspection/TypeId.ipp
+++ /dev/null
@@ -1,37 +0,0 @@
-// file : Utility/Introspection/TypeId.ipp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-// cvs-id : $Id$
-
-namespace Utility
-{
- namespace Introspection
- {
- inline TypeId::
- TypeId (std::type_info const& tid)
- : tid_ (&tid)
- {
- }
-
-
- inline bool TypeId::
- operator == (TypeId const& other) const
- {
- return *tid_ == *other.tid_;
- }
-
- inline bool TypeId::
- operator != (TypeId const& other) const
- {
- return *tid_ != *other.tid_;
- }
-
- inline bool TypeId::
- operator < (TypeId const& other) const
- {
- return tid_->before (*other.tid_);
- }
- }
-}
-//$Id$