summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_param_holder.h
blob: 2eecadb9e4a8dec4f159b365f1030994e9607b10 (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
/* -*- c++ -*- */

//=============================================================================
/**
 *  @file    be_param_holder.h
 *
 *  Place holder referenced by AST_Field (or subclass)
 *  representing a corresponding template parameter in IDL.
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef TAO_BE_PARAM_HOLDER_H
#define TAO_BE_PARAM_HOLDER_H

#include "be_type.h"

#include "ast_param_holder.h"

class be_param_holder : public virtual AST_Param_Holder,
                        public virtual be_type
{
public:
  be_param_holder (UTL_ScopedName *parameter_name,
                   FE_Utils::T_Param_Info *info);

  virtual ~be_param_holder ();

  // Cleanup function.
  virtual void destroy ();

  // Visiting.
  virtual int accept (be_visitor *visitor);
};

#endif // TAO_BE_PARAM_HOLDER_H