summaryrefslogtreecommitdiff
path: root/TAO/tests/Crash_On_Write/Oneway_Receiver.h
blob: a19c77fe6b543bd38e4c96a75363c0547fc32c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifndef ONEWAY_RECEIVER_H
#define ONEWAY_RECEIVER_H
#include /**/ "ace/pre.h"

#include "TestS.h"

/// Implement the Test::Oneway_Receiver interface
class Oneway_Receiver
  : public virtual POA_Test::Oneway_Receiver
{
public:
  /// Constructor
  Oneway_Receiver ();

  // = The skeleton methods
  virtual void receive_oneway ();
};

#include /**/ "ace/post.h"
#endif /* ONEWAY_RECEIVER_H */