summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_eventtype_fwd.h
blob: 89b994ffa1b218d1b23f5b6cb410a5cf71aca4fa (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
/* -*- c++ -*- */

//=============================================================================
/**
 *  @file    be_eventtype_fwd.h
 *
 *  Extension of class AST_EventType_Fwd that provides additional
 *  means for C++ mapping of an eventtype.
 *
 *  @author Jeff Parsons
 */
//=============================================================================

#ifndef BE_EVENTTYPE_FWD_H
#define BE_EVENTTYPE_FWD_H

#include "be_valuetype_fwd.h"
#include "ast_eventtype_fwd.h"

class be_eventtype_fwd : public virtual be_valuetype_fwd,
                         public virtual AST_EventTypeFwd
{
  // =TITLE
  //   be_valuetype_fwd
  //
  // =DESCRIPTION
  //   Extensions to the be_interface_fwd class
public:
  be_eventtype_fwd (AST_Interface *dummy,
                    UTL_ScopedName *n);

  virtual ~be_eventtype_fwd (void);

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

  // Cleanup
  virtual void destroy (void);

  // Narrowing.
  DEF_NARROW_FROM_DECL (be_eventtype_fwd);
};

#endif // if !defined