summaryrefslogtreecommitdiff
path: root/ACE/contrib/utility/Utility/Introspection/TypeId.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/contrib/utility/Utility/Introspection/TypeId.tpp')
-rw-r--r--ACE/contrib/utility/Utility/Introspection/TypeId.tpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/ACE/contrib/utility/Utility/Introspection/TypeId.tpp b/ACE/contrib/utility/Utility/Introspection/TypeId.tpp
new file mode 100644
index 00000000000..7c3daef603c
--- /dev/null
+++ b/ACE/contrib/utility/Utility/Introspection/TypeId.tpp
@@ -0,0 +1,18 @@
+// file : Utility/Introspection/TypeId.tpp
+// author : Boris Kolpackov <boris@kolpackov.net>
+// copyright : Copyright (c) 2002-2003 Boris Kolpackov
+// license : http://kolpackov.net/license.html
+
+namespace Utility
+{
+ namespace Introspection
+ {
+ template<typename T>
+ inline TypeId::
+ TypeId (T const& t)
+ : tid_ (&typeid (t))
+ {
+ }
+ }
+}
+//$Id$