summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_porttype.h
blob: 4a0464e30838c9f0c542b222ae79deb9944d22b6 (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

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


#ifndef BE_PORTTYPE_H
#define BE_PORTTYPE_H

#include "ast_porttype.h"

#include "be_scope.h"
#include "be_type.h"

class be_visitor;

/**
 * Extension of class AST_PortType for C++ code generation.
 */
class be_porttype : public virtual AST_PortType,
                    public virtual be_scope,
                    public virtual be_type
{
public:
  be_porttype (UTL_ScopedName *n);

  virtual ~be_porttype ();

  virtual void destroy ();

  virtual int accept (be_visitor *visitor);
};

#endif // BE_PORTTYPE_H