summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Driver_Base.h
blob: fabec43f639b7e15700a325beb0192db72f15fe7 (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
/* -*- C++ -*- */
/**
 *  @file Driver_Base.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 *
 *
 */

#ifndef TAO_Notify_Tests_APPLICATION_STARTER_H
#define TAO_Notify_Tests_APPLICATION_STARTER_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_Driver_Base
 *
 * @brief Base class for Driver.
 *
 */
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Driver_Base
{
public:
  virtual ~TAO_Notify_Tests_Driver_Base () {};

  /// Shutdown
  virtual void shutdown (void) = 0;
};

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