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

« back to all changes in this revision

Viewing changes to TAO/TAO_IDL/be_include/be_visitor_eventtype/eventtype_ci.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
 
//
2
 
// eventtype_ci.h,v 1.1 2002/09/25 16:25:38 parsons Exp
3
 
//
4
 
/* -*- c++ -*- */
5
 
// ============================================================================
6
 
//
7
 
// = LIBRARY
8
 
//    TAO IDL
9
 
//
10
 
// = FILENAME
11
 
//    eventtype_ci.h
12
 
//
13
 
// = DESCRIPTION
14
 
//    Concrete visitor for the Eventtype node.
15
 
//    This one provides code generation for eventtypes in the (client) inline.
16
 
//
17
 
// = AUTHOR
18
 
//    Jeff Parsons
19
 
//
20
 
// ============================================================================
21
 
 
22
 
#ifndef _BE_EVENTTYPE_EVENTTYPE_CI_H_
23
 
#define _BE_EVENTTYPE_EVENTTYPE_CI_H_
24
 
 
25
 
class be_visitor_eventtype_ci : public be_visitor_valuetype
26
 
{
27
 
  //
28
 
  // = TITLE
29
 
  //   be_visitor_eventtype_ci
30
 
  //
31
 
  // = DESCRIPTION
32
 
  //   This is a concrete visitor to generate the client inline for eventtype
33
 
  //
34
 
  //
35
 
public:
36
 
  be_visitor_eventtype_ci (be_visitor_context *ctx);
37
 
  // constructor
38
 
 
39
 
  ~be_visitor_eventtype_ci (void);
40
 
  // destructor
41
 
 
42
 
  virtual int visit_eventtype (be_eventtype *node);
43
 
};
44
 
 
45
 
#endif /* _BE_EVENTTYPE_EVENTTYPE_CI_H_ */