summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3000_Regression/Callback.h
blob: 7d0e5c4474411a23f0de9907ff63d0b2fc517b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// $Id$
//

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

#include "TestS.h"

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

  virtual void test_oneway (void);

  bool received_callback (void);

 private:
  bool received_callback_;
};

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