Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / TAO_IDL / include / ast_extended_port.h
blobdd0fb686581873a861de76110f2cf495ace7dd18
1 // -*- C++ -*-
2 #ifndef AST_EXTENDED_PORT_H
3 #define AST_EXTENDED_PORT_H
5 #include "ast_field.h"
6 #include "ast_porttype.h"
8 class TAO_IDL_FE_Export AST_Extended_Port
9 : public virtual AST_Field
11 public:
12 AST_Extended_Port (
13 UTL_ScopedName *n,
14 AST_PortType *porttype_ref);
16 virtual ~AST_Extended_Port ();
18 AST_PortType *port_type () const;
20 // Cleanup function.
21 virtual void destroy ();
23 // AST Dumping.
24 virtual void dump (ACE_OSTREAM_TYPE &o);
26 // Visiting.
27 virtual int ast_accept (ast_visitor *visitor);
29 static AST_Decl::NodeType const NT;
32 #endif /* AST_EXTENDED_PORT_H */