summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_template_module_ref.h
blob: ab8bc4a4478be39f24171d0670558b8136efdfd2 (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
// This may look like C, but it's really -*- C++ -*-
// $Id$

#ifndef BE_TEMPLATE_MODULE_REF_H
#define BE_TEMPLATE_MODULE_REF_H

#include "be_field.h"

#include "ast_template_module_ref.h"

class be_template_module_ref
  : public virtual AST_Template_Module_Ref,
    public virtual be_field
{
public:
  be_template_module_ref (UTL_ScopedName *n,
                           AST_Template_Module *ref,
                           UTL_StrList *param_refs);

  virtual ~be_template_module_ref (void);
  
  // Narrowing.
  DEF_NARROW_FROM_DECL (be_template_module_ref);

  // Cleanup function.
  virtual void destroy (void);

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

#endif           // BE_TEMPLATE_MODULE_REF_H