summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Introspection/Object.ipp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/utility/Utility/Introspection/Object.ipp')
-rw-r--r--contrib/utility/Utility/Introspection/Object.ipp48
1 files changed, 0 insertions, 48 deletions
diff --git a/contrib/utility/Utility/Introspection/Object.ipp b/contrib/utility/Utility/Introspection/Object.ipp
deleted file mode 100644
index 7b5de978c6e..00000000000
--- a/contrib/utility/Utility/Introspection/Object.ipp
+++ /dev/null
@@ -1,48 +0,0 @@
-// file : Utility/Introspection/Object.ipp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-
-namespace Utility
-{
- namespace Introspection
- {
- inline TypeInfo const& Object::
- type_info () const throw ()
- {
- return *type_info_;
- }
-
- inline Object::
- ~Object ()
- {
- }
-
- inline Object::
- Object () throw ()
- {
- type_info (static_type_info ());
- }
-
-
- inline Object::
- Object (Object const&) throw ()
- {
- type_info (static_type_info ());
- }
-
-
- inline Object& Object::
- operator= (Object const&) throw ()
- {
- return *this;
- }
-
- inline void Object::
- type_info (TypeInfo const& tid) throw ()
- {
- type_info_ = &tid;
- }
- }
-}
-//$Id$