Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / Notify / lib / Driver_Base.h
blobfc2e00cc992936ff8689d50f0adb9b90958d53f8
1 /* -*- C++ -*- */
2 /**
3 * @file Driver_Base.h
5 * @author Pradeep Gore <pradeep@oomworks.com>
6 */
8 #ifndef TAO_Notify_Tests_APPLICATION_STARTER_H
9 #define TAO_Notify_Tests_APPLICATION_STARTER_H
10 #include /**/ "ace/pre.h"
12 #include "notify_test_export.h"
14 #if !defined (ACE_LACKS_PRAGMA_ONCE)
15 # pragma once
16 #endif /* ACE_LACKS_PRAGMA_ONCE */
18 /**
19 * @class TAO_Notify_Tests_Driver_Base
21 * @brief Base class for Driver.
23 class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Driver_Base
25 public:
26 virtual ~TAO_Notify_Tests_Driver_Base () {};
28 /// Shutdown
29 virtual void shutdown () = 0;
32 #include /**/ "ace/post.h"
33 #endif /* TAO_Notify_Tests_APPLICATION_STARTER_H */