summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_factory.cpp
blob: 9aa2fb1d5e5b9efe6a634546cdf565e94f1189d6 (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
54
55
56
57
58
59
60
61
62
63
64
65
66

//=============================================================================
/**
 *  @file    be_factory.cpp
 *
 *  Extension of class AST_Factory that provides additional means for C++
 *  mapping.
 *
 *  @author Copyright 1994-1995 by Sun Microsystems
 *  @author Inc. and Boris Kolpackov <bosk@ipmce.ru>
 */
//=============================================================================

#include "be_factory.h"
#include "be_visitor.h"

#include "ast_exception.h"
#include "ast_argument.h"

#include "utl_err.h"
#include "utl_exceptlist.h"

#include "global_extern.h"

be_factory::be_factory (UTL_ScopedName *n)
  : COMMON_Base (true,
                 false), //@@ Always local, never abstract
    AST_Decl (AST_Decl::NT_factory,
              n),
    UTL_Scope (AST_Decl::NT_factory),
    AST_Factory (n),
    be_scope (AST_Decl::NT_factory),
    be_decl (AST_Decl::NT_factory,
             n)
{
}

be_factory::~be_factory ()
{
}

void
be_factory::destroy ()
{
  // Call the destroy methods of our base classes.
  this->be_scope::destroy ();
  this->be_decl::destroy ();

  this->AST_Factory::destroy ();
}

int
be_factory::accept (be_visitor *visitor)
{
  return visitor->visit_factory (this);
}

AST_Argument *
be_factory::be_add_argument (AST_Argument *arg)
{
  this->add_to_scope (arg);
  this->add_to_referenced (arg,
                           false,
                           nullptr);
  return arg;
}