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

« back to all changes in this revision

Viewing changes to TAO/examples/Advanced/ch_3/server.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
 
// server.h,v 1.2 1999/08/30 17:31:12 schmidt Exp
2
 
 
3
 
// ============================================================================
4
 
//
5
 
// = LIBRARY
6
 
//    TAO/examples/Advanced/ch_3
7
 
//
8
 
// = FILENAME
9
 
//    server.h
10
 
//
11
 
// = AUTHORS
12
 
//   Source code used in TAO has been modified and adapted from the code
13
 
//   provided in the book, "Advanced CORBA Programming with C++" by Michi
14
 
//   Henning and Steve Vinoski. Copyright 1999. Addison-Wesley, Reading,
15
 
//   MA.  Used with permission of Addison-Wesley.
16
 
//
17
 
//   Modified for TAO by Mike Moran <mm4@cs.wustl.edu>
18
 
//
19
 
// ============================================================================
20
 
 
21
 
#ifndef server_HH_
22
 
#define server_HH_
23
 
 
24
 
#include "timeS.h"
25
 
 
26
 
class Time_impl : public virtual POA_Time 
27
 
28
 
public:
29
 
  virtual TimeOfDay get_gmt (void) throw (CORBA::SystemException);
30
 
};
31
 
 
32
 
#endif /* server_HH_ */