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

« back to all changes in this revision

Viewing changes to TAO/CIAO/CIDLC/DescriptorGenerator.hpp

  • 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      : CIDLC/DescriptorGenerator.hpp
2
 
// author    : Jeff Parsons <j.parsons@vanderbilt.edu>
3
 
// cvs-id    : DescriptorGenerator.hpp,v 1.5 2004/01/05 07:53:05 parsons Exp
4
 
 
5
 
#ifndef DESCRIPTOR_GENERATOR_HPP
6
 
#define DESCRIPTOR_GENERATOR_HPP
7
 
 
8
 
#include "CCF/CodeGenerationKit/CommandLine.hpp"
9
 
#include "CCF/CodeGenerationKit/CommandLineDescriptor.hpp"
10
 
 
11
 
#include "CCF/CIDL/SemanticGraph.hpp"
12
 
 
13
 
class DescriptorGenerator
14
 
{
15
 
public:
16
 
  void
17
 
  options (CL::Description& d);
18
 
 
19
 
  void
20
 
  generate (CommandLine const&,
21
 
            CCF::CIDL::SemanticGraph::TranslationUnit&);
22
 
 
23
 
private:
24
 
  fs::ofstream ofs_;
25
 
};
26
 
 
27
 
 
28
 
#endif // DESCRIPTOR_GENERATOR_HPP
29
 
 
30
 
/*
31
 
 * Local Variables:
32
 
 * mode: C++
33
 
 * c-basic-offset: 2
34
 
 * End:
35
 
 */