blob: 4a0c994ac33affe8d1287d48e04d2288ae0fbba9 (
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
|
/* -*- C++ -*- */
/**
* @file Driver_Base.h
*
* @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 */
|