summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/Introspection/Object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/utility/Utility/Introspection/Object.hpp')
-rw-r--r--contrib/utility/Utility/Introspection/Object.hpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/contrib/utility/Utility/Introspection/Object.hpp b/contrib/utility/Utility/Introspection/Object.hpp
deleted file mode 100644
index fdf8228c9f3..00000000000
--- a/contrib/utility/Utility/Introspection/Object.hpp
+++ /dev/null
@@ -1,47 +0,0 @@
-// file : Utility/Introspection/Object.hpp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-
-#ifndef UTILITY_INTROSPECTION_OBJECT_HPP
-#define UTILITY_INTROSPECTION_OBJECT_HPP
-
-#include "Utility/Introspection/TypeInfo.hpp"
-
-namespace Utility
-{
- namespace Introspection
- {
- class Object
- {
- public:
- static TypeInfo const&
- static_type_info () throw ();
-
- virtual TypeInfo const&
- type_info () const throw ();
-
- protected:
- virtual
- ~Object ();
-
- Object () throw ();
- Object (Object const&) throw ();
-
- Object&
- operator= (Object const&) throw ();
-
- protected:
- virtual void
- type_info (TypeInfo const& tid) throw ();
-
- private:
- TypeInfo const* type_info_;
- };
- }
-}
-
-#include "Utility/Introspection/Object.ipp"
-
-#endif // UTILITY_INTROSPECTION_OBJECT_HPP
-//$Id$