summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_eventtype.h
blob: 333f0571ed8dd2ca17be8263deefde419d35a796 (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
49
50
51
52
53
/* -*- c++ -*- */

//=============================================================================
/**
 *  @file    be_eventtype.h
 *
 *  Extension of class AST_EventType and be_valuetype that provides
 *  additional means for C++ mapping of an valuetype.
 */
//=============================================================================

#ifndef TAO_BE_EVENTTYPE_H
#define TAO_BE_EVENTTYPE_H

#include "be_valuetype.h"
#include "ast_eventtype.h"

/**
 * Backend-class for eventtypes
 *
 * Extends be_valuetype.
 */
class be_eventtype : public virtual be_valuetype,
                     public virtual AST_EventType
{
public:
  be_eventtype (UTL_ScopedName *n,
                AST_Type **inherits,
                long n_inherits,
                AST_Type *inherits_concrete,
                AST_Interface **inherits_flat,
                long n_inherits_flat,
                AST_Type **supports,
                long n_supports,
                AST_Type *supports_concrete,
                bool abstract,
                bool truncatable,
                bool custom);

  ~be_eventtype (void);

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

  // Cleanup.
  virtual void destroy (void);

  // Narrowing.
  DEF_NARROW_FROM_DECL (be_eventtype);
  DEF_NARROW_FROM_SCOPE (be_eventtype);
};

#endif  // if !defined