blob: c1d6d5f42942782a47d321ab293baa5c88d90dd2 (
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
|
/* -*- c++ -*- */
//=============================================================================
/**
* @file be_home.h
*
* $Id$
*
* Extension of class AST_Home that provides additional
* means for C++ mapping of a component home.
*
*
* @author Jeff Parsons
*/
//=============================================================================
#ifndef TAO_BE_HOME_H
#define TAO_BE_HOME_H
#include "be_interface.h"
#include "ast_home.h"
class be_home : public virtual AST_Home,
public virtual be_interface
{
// =TITLE
// be_home
//
// =DESCRIPTION
// Extensions to the AST_Home class
public:
be_home (void);
be_home (UTL_ScopedName *n,
AST_Home *base_home,
AST_Component *managed_component,
AST_Type *primary_key,
AST_Type **supports,
long n_supports,
AST_Interface **supports_flat,
long n_supports_flat);
virtual ~be_home (void);
// Cleanup function.
virtual void destroy (void);
// Visiting.
virtual int accept (be_visitor* visitor);
// Narrowing.
DEF_NARROW_FROM_DECL (be_home);
DEF_NARROW_FROM_SCOPE (be_home);
};
#endif // if !defined
|