~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/TAO_IDL/be_include/be_interface_fwd.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- c++ -*- */
2
 
// be_interface_fwd.h,v 1.23 2003/10/28 18:30:39 bala Exp
3
 
 
4
 
// ============================================================================
5
 
//
6
 
// = LIBRARY
7
 
//    TAO IDL
8
 
//
9
 
// = FILENAME
10
 
//    be_interface_fwd.h
11
 
//
12
 
// = DESCRIPTION
13
 
//    Extension of class AST_InterfaceFwd that provides additional
14
 
//    means for C++ mapping of a forward declared interface.
15
 
//
16
 
// = AUTHOR
17
 
//    Copyright 1994-1995 by Sun Microsystems, Inc.
18
 
//    and
19
 
//    Aniruddha Gokhale
20
 
//
21
 
// ============================================================================
22
 
 
23
 
#ifndef BE_INTERFACE_FWD_H
24
 
#define BE_INTERFACE_FWD_H
25
 
 
26
 
#include "be_type.h"
27
 
#include "ast_interface_fwd.h"
28
 
 
29
 
class AST_Interface;
30
 
class be_visitor;
31
 
 
32
 
class be_interface_fwd : public virtual AST_InterfaceFwd,
33
 
                         public virtual be_type
34
 
{
35
 
  // =TITLE
36
 
  //   be_interface_fwd
37
 
  //
38
 
  // =DESCRIPTION
39
 
  //   Extensions to the AST_InterfaceFwd class
40
 
public:
41
 
  be_interface_fwd (void);
42
 
  // Default constructor.
43
 
 
44
 
  be_interface_fwd (AST_Interface *dummy,
45
 
                    UTL_ScopedName *n);
46
 
  // Constructor.
47
 
 
48
 
  virtual ~be_interface_fwd (void);
49
 
  // Destructor.
50
 
 
51
 
  virtual void seq_elem_tmplinst (idl_bool val);
52
 
  virtual void seen_in_sequence (idl_bool val);
53
 
  virtual void seen_in_operation (idl_bool val);
54
 
  // Mutator overrides for be_type members. If we have been
55
 
  // defined, we want the full definition to be set as well.
56
 
 
57
 
  virtual void destroy (void);
58
 
  // Cleanup function.
59
 
 
60
 
  // Visiting.
61
 
  virtual int accept (be_visitor* visitor);
62
 
 
63
 
  // Narrowing.
64
 
  DEF_NARROW_METHODS2 (be_interface_fwd, AST_InterfaceFwd, be_type);
65
 
  DEF_NARROW_FROM_DECL (be_interface_fwd);
66
 
};
67
 
 
68
 
#endif // if !defined