blob: 160d09846ce99989f8b46bdd2653e5d031e79ff5 (
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
41
42
43
44
45
46
47
48
|
// ================================================================
/**
* @file DLL_Test.h
*
* $Id$
*
* @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
*/
// ================================================================
#ifndef ACE_TESTS_DLL_TEST_H
#define ACE_TESTS_DLL_TEST_H
#include "ace/Log_Msg.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class Hello
*
* @brief Define the interface used by the DLL_Test
*/
class Hello
{
public:
/// Destructor
virtual ~Hello (void) {}
/**
* @name Methods invoked by the test
*
* The test invokes two methods, a non-virtual method and a virtual
* method implemented in the shared library.
*/
//@{
void say_hello (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Hello\n")));
}
virtual void say_next (void) = 0;
//@}
};
#endif /* ACE_TESTS_DLL_TEST_H */
|