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

« back to all changes in this revision

Viewing changes to TAO/CIAO/CCF/CCF/CIDL/Traversal/Composition.tpp

  • 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
 
// file      : CCF/CIDL/Traversal/Composition.tpp
2
 
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
3
 
// cvs-id    : Composition.tpp,v 1.1 2003/12/22 22:26:39 boris Exp
4
 
 
5
 
namespace CCF
6
 
{
7
 
  namespace CIDL
8
 
  {
9
 
    namespace Traversal
10
 
    {
11
 
 
12
 
      template <typename T>
13
 
      void CompositionTemplate<T>::
14
 
      traverse (T& c)
15
 
      {
16
 
        pre (c);
17
 
        name (c);
18
 
        names (c);
19
 
        post (c);
20
 
      }
21
 
 
22
 
      template <typename T>
23
 
      void CompositionTemplate<T>::
24
 
      pre (T&)
25
 
      {
26
 
      }
27
 
 
28
 
      template <typename T>
29
 
      void CompositionTemplate<T>::
30
 
      name (T&)
31
 
      {
32
 
      }
33
 
 
34
 
      template <typename T>
35
 
      void CompositionTemplate<T>::
36
 
      post (T&)
37
 
      {
38
 
      }
39
 
    }
40
 
  }
41
 
}