summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/DII_CORBA_methods.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/DynamicInterface/DII_CORBA_methods.h')
-rw-r--r--TAO/tao/DynamicInterface/DII_CORBA_methods.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/TAO/tao/DynamicInterface/DII_CORBA_methods.h b/TAO/tao/DynamicInterface/DII_CORBA_methods.h
new file mode 100644
index 00000000000..aea9e098cbb
--- /dev/null
+++ b/TAO/tao/DynamicInterface/DII_CORBA_methods.h
@@ -0,0 +1,68 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file DII_CORBA_methods.h
+ *
+ * $Id$
+ *
+ * Declarations of DII methods in the CORBA namespace.
+ *
+ * @author Ossama Othman <ossama@dre.vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef TAO_DII_CORBA_METHODS_H
+#define TAO_DII_CORBA_METHODS_H
+
+#include /**/ "ace/pre.h"
+
+#include "tao/DynamicInterface/dynamicinterface_export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/CORBA_methods.h"
+
+#if defined (TAO_EXPORT_MACRO)
+#undef TAO_EXPORT_MACRO
+#endif
+
+#define TAO_EXPORT_MACRO TAO_DynamicInterface_Export
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace CORBA
+{
+ class ContextList;
+ typedef ContextList *ContextList_ptr;
+
+ class Context;
+ typedef Context *Context_ptr;
+
+ class ExceptionList;
+ typedef ExceptionList *ExceptionList_ptr;
+
+ class Request;
+ typedef Request *Request_ptr;
+
+ TAO_NAMESPACE_INLINE_FUNCTION void release (Context_ptr);
+ TAO_NAMESPACE_INLINE_FUNCTION Boolean is_nil (Context_ptr);
+
+ TAO_NAMESPACE_INLINE_FUNCTION void release (ContextList_ptr);
+ TAO_NAMESPACE_INLINE_FUNCTION Boolean is_nil (ContextList_ptr );
+
+ TAO_NAMESPACE_INLINE_FUNCTION void release (ExceptionList_ptr);
+ TAO_NAMESPACE_INLINE_FUNCTION Boolean is_nil (ExceptionList_ptr);
+
+ TAO_NAMESPACE_INLINE_FUNCTION void release (Request_ptr);
+ TAO_NAMESPACE_INLINE_FUNCTION Boolean is_nil (Request_ptr);
+
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_DII_CORBA_METHODS_H */