summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h')
-rw-r--r--modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h b/modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h
new file mode 100644
index 00000000000..f38b586ae86
--- /dev/null
+++ b/modules/TAO/TAO_IDL/include/ast_tmpl_mirror_port.h
@@ -0,0 +1,28 @@
+#ifndef AST_TMPL_MIRROR_PORT_H
+#define AST_TMPL_MIRROR_PORT_H
+
+#include "ast_tmpl_port.h"
+
+class TAO_IDL_FE_Export AST_Tmpl_Mirror_Port
+ : public virtual AST_Tmpl_Port
+{
+public:
+ AST_Tmpl_Mirror_Port (
+ UTL_ScopedName *n,
+ AST_PortType *porttype_ref);
+
+ virtual ~AST_Tmpl_Mirror_Port (void);
+
+ // Narrowing.
+
+ DEF_NARROW_FROM_DECL (AST_Tmpl_Mirror_Port);
+
+ // AST Dumping.
+ virtual void dump (ACE_OSTREAM_TYPE &o);
+
+ // Visiting.
+ virtual int ast_accept (ast_visitor *visitor);
+};
+
+#endif /* AST_TMPL_MIRROR_PORT_H */
+