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

« back to all changes in this revision

Viewing changes to TAO/tests/Crash_On_Write/Oneway_Receiver.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
 
// Oneway_Receiver.h,v 1.4 2003/07/21 23:51:40 dhinton Exp
3
 
//
4
 
 
5
 
#ifndef ONEWAY_RECEIVER_H
6
 
#define ONEWAY_RECEIVER_H
7
 
#include /**/ "ace/pre.h"
8
 
 
9
 
#include "TestS.h"
10
 
 
11
 
#if defined (_MSC_VER)
12
 
# if (_MSC_VER >= 1200)
13
 
#  pragma warning(push)
14
 
# endif /* _MSC_VER >= 1200 */
15
 
# pragma warning (disable:4250)
16
 
#endif /* _MSC_VER */
17
 
 
18
 
/// Implement the Test::Oneway_Receiver interface
19
 
class Oneway_Receiver
20
 
  : public virtual POA_Test::Oneway_Receiver
21
 
  , public virtual PortableServer::RefCountServantBase
22
 
{
23
 
public:
24
 
  /// Constructor
25
 
  Oneway_Receiver (void);
26
 
 
27
 
  // = The skeleton methods
28
 
  virtual void receive_oneway (ACE_ENV_SINGLE_ARG_DECL)
29
 
    ACE_THROW_SPEC ((CORBA::SystemException));
30
 
};
31
 
 
32
 
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
33
 
# pragma warning(pop)
34
 
#endif /* _MSC_VER */
35
 
 
36
 
#include /**/ "ace/post.h"
37
 
#endif /* ONEWAY_RECEIVER_H */