summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/Notify/lib/Task_Callback.h
blob: 97caae326e01bcd34f0bc62c0c60540faea08cd1 (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
29
30
31
32
33
34
35
36
37
38
39
40
/* -*- C++ -*- */
/**
 *  @file Task_Callback.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 *
 *
 */

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

#include "notify_test_export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class TAO_Notify_Tests_Periodic_Supplier;
class TAO_Notify_Tests_Periodic_Consumer;

/**
 * @class TAO_Notify_Tests_Task_Callback
 *
 * @brief
 *
 */
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Task_Callback
{
public:
  virtual ~TAO_Notify_Tests_Task_Callback (void);
  virtual void done (TAO_Notify_Tests_Periodic_Supplier* supplier) = 0;
  virtual void done (TAO_Notify_Tests_Periodic_Consumer* consumer) = 0;
};

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