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

« back to all changes in this revision

Viewing changes to TAO/TAO_IDL/be/be_visitor_component/component_ss.cpp

  • 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
 
//
2
 
// component_ss.cpp,v 1.3 2003/03/12 16:50:33 parsons Exp
3
 
//
4
 
 
5
 
// ============================================================================
6
 
//
7
 
// = LIBRARY
8
 
//    TAO IDL
9
 
//
10
 
// = FILENAME
11
 
//    component_si.cpp
12
 
//
13
 
// = DESCRIPTION
14
 
//    Visitor generating code for Components in the server skeleton.
15
 
//
16
 
// = AUTHOR
17
 
//    Jeff Parsons
18
 
//
19
 
// ============================================================================
20
 
 
21
 
ACE_RCSID (be_visitor_component,
22
 
           component_ss,
23
 
           "component_ss.cpp,v 1.3 2003/03/12 16:50:33 parsons Exp")
24
 
 
25
 
// ******************************************************
26
 
// Component visitor for server skeleton
27
 
// ******************************************************
28
 
 
29
 
be_visitor_component_ss::be_visitor_component_ss (be_visitor_context *ctx)
30
 
  : be_visitor_component (ctx)
31
 
{
32
 
}
33
 
 
34
 
be_visitor_component_ss::~be_visitor_component_ss (void)
35
 
{
36
 
}
37
 
 
38
 
int
39
 
be_visitor_component_ss::visit_component (be_component *node)
40
 
{
41
 
  be_visitor_context ctx (*this->ctx_);
42
 
  be_visitor_interface_ss visitor (&ctx);
43
 
  return visitor.visit_interface (node);
44
 
}