summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_extended_port.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_extended_port.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_extended_port.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_extended_port.h b/ACE/TAO/TAO_IDL/be_include/be_extended_port.h
new file mode 100644
index 00000000000..66a4461f1cd
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_extended_port.h
@@ -0,0 +1,58 @@
+//
+// $Id$
+//
+
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO_IDL_BE
+//
+// = FILENAME
+// be_extended_port.h
+//
+// = DESCRIPTION
+// Extension of class AST_Extended_Port for C++ code generation.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef BE_EXTENDED_PORT_H
+#define BE_EXTENDED_PORT_H
+
+#include "ast_extended_port.h"
+
+#include "be_field.h"
+#include "be_porttype.h"
+
+class be_visitor;
+
+class be_extended_port : public virtual AST_Extended_Port,
+ public virtual be_field
+{
+ //
+ // = TITLE
+ // be_extended_port
+ //
+ // = DESCRIPTION
+ // Extension of class AST_Extended_Port for C++ code generation.
+ //
+public:
+ be_extended_port (
+ UTL_ScopedName *n,
+ AST_PortType *porttype_ref);
+
+ virtual ~be_extended_port (void);
+
+ be_porttype *port_type (void) const;
+
+ virtual void destroy (void);
+
+ virtual int accept (be_visitor *visitor);
+
+ DEF_NARROW_FROM_DECL (be_extended_port);
+};
+
+#endif // BE_EXTENDED_PORT_H