blob: 3046dad48d464db71eacf9462bd131b3eed591f1 (
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
|
// -*- C++ -*-
// ================================================================
/**
* @file DLL_Test_Parent.h
*
* $Id$
*
* @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
* @author Ossama Othman <ossama@dre.vanderbilt.edu>
*/
// ================================================================
#ifndef ACE_TESTS_DLL_TEST_PARENT_H
#define ACE_TESTS_DLL_TEST_PARENT_H
#include "DLL_Test_Parent_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class DLL_Test_Parent_Export Parent
{
public:
virtual ~Parent (void);
virtual void test (void);
};
#endif /* ACE_TESTS_DLL_TEST_PARENT_H */
|