summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_extended_port/extended_port.h
blob: 01510fae7c15293d8f09f81a61255b14a208881c (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
44
45
46
47
48
//
// $Id$
//
/* -*- c++ -*- */
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    extended_port.h
//
// = DESCRIPTION
//    Base class visitor for the extended port node.
//
// = AUTHOR
//    Jeff Parsons
//
// ============================================================================

#ifndef _BE_VISITOR_EXTENDED_PORT_EXTENEDED_PORT_H_
#define _BE_VISITOR_EXTENDED_PORT_EXTENEDED_PORT_H_

class be_visitor_extended_port
  : public be_visitor_decl
{
  //
  // = TITLE
  //   be_visitor_extended_port
  //
  // = DESCRIPTION
  //   This is a base class visitor for other extended port
  //   visitors.
  //
  //
protected:
  be_visitor_extended_port (be_visitor_context *ctx);
  
  ~be_visitor_extended_port (void);
  
protected:
  AST_Template_Common::T_ARGLIST *template_args_;
  be_porttype *port_type_;
};

#endif /* _BE_VISITOR_EXTENDED_PORT_EXTENEDED_PORT_H_ */