summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_mirror_port.h
blob: 494d1a2676c73825e63c0f84a89c302c69b994c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

/* -*- c++ -*- */
//=============================================================================
/**
 *  @file    be_mirror_port.h
 *
 *  Extension of class AST_Mirror_Port for C++ code generation.
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef BE_MIRROR_PORT_H
#define BE_MIRROR_PORT_H

#include "ast_mirror_port.h"

#include "be_extended_port.h"

class be_visitor;

/**
 * Extension of class AST_Mirror_Port for C++ code generation.
 */
class be_mirror_port : public virtual AST_Mirror_Port,
                       public virtual be_extended_port
{
public:
  be_mirror_port (
    UTL_ScopedName *n,
    AST_PortType *porttype_ref);

  virtual ~be_mirror_port (void);

  virtual void destroy (void);

  virtual int accept (be_visitor *visitor);

  DEF_NARROW_FROM_DECL (be_mirror_port);
};

#endif // BE_MIRROR_PORT_H