summaryrefslogtreecommitdiff
path: root/TAO/tao/Object_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Object_T.h')
-rw-r--r--TAO/tao/Object_T.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/TAO/tao/Object_T.h b/TAO/tao/Object_T.h
new file mode 100644
index 00000000000..cce3cd67c53
--- /dev/null
+++ b/TAO/tao/Object_T.h
@@ -0,0 +1,78 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Object_T.h
+ *
+ * $Id$
+ *
+ * Templatized utilities common to all IDL interfaces.
+ *
+ * @author Jeff Parsons <j.parsons@vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef TAO_CORBA_OBJECT_T_H
+#define TAO_CORBA_OBJECT_T_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/config-all.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include /**/ "tao/Versioned_Namespace.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace CORBA
+{
+ class Object;
+ typedef Object *Object_ptr;
+}
+
+namespace TAO
+{
+ class Collocation_Proxy_Broker;
+
+ typedef
+ Collocation_Proxy_Broker * (* Proxy_Broker_Factory)(CORBA::Object_ptr);
+
+ template<typename T>
+ class Narrow_Utils
+ {
+ public:
+ typedef T *T_ptr;
+
+ static T_ptr narrow (CORBA::Object_ptr,
+ const char *repo_id,
+ Proxy_Broker_Factory);
+
+ // Version used the operators.
+ static T_ptr unchecked_narrow (CORBA::Object_ptr, Proxy_Broker_Factory);
+
+ static T_ptr unchecked_narrow (CORBA::Object_ptr,
+ const char *repo_id,
+ Proxy_Broker_Factory);
+
+ private:
+ // Code for lazily evaluated IORs.
+ static T_ptr lazy_evaluation (CORBA::Object_ptr);
+ };
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
+#include "tao/Object_T.cpp"
+#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
+
+#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
+#pragma implementation ("Object_T.cpp")
+#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_CORBA_OBJECT_T_H */