fix missed headers in linux build
[ACE_TAO.git] / TAO / TAO_IDL / include / ast_mirror_port.h
blob3195c88da4a8f180724e09ce3ecee154b116a920
1 // -*- C++ -*-
2 #ifndef AST_MIRROR_PORT_H
3 #define AST_MIRROR_PORT_H
5 #include "ast_extended_port.h"
7 class TAO_IDL_FE_Export AST_Mirror_Port
8 : public virtual AST_Extended_Port
10 public:
11 AST_Mirror_Port (
12 UTL_ScopedName *n,
13 AST_PortType *porttype_ref);
15 virtual ~AST_Mirror_Port ();
17 // Cleanup function.
18 virtual void destroy ();
20 // AST Dumping.
21 virtual void dump (ACE_OSTREAM_TYPE &o);
23 // Visiting.
24 virtual int ast_accept (ast_visitor *visitor);
26 static AST_Decl::NodeType const NT;
29 #endif /* AST_MIRROR_PORT_H */