Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / ACE / tests / Compiler_Features_20_DLL.h
blob73a51bc4c97a300d6267f2b37cab1187aa0ec1a3
2 //=============================================================================
3 /**
4 * @file Compiler_Features_20_DLL.h
6 * Test DLL export with default constructor
7 */
8 //=============================================================================
10 #ifndef ACE_TESTS_COMPILER_FEATURES_20_DLL_H
11 #define ACE_TESTS_COMPILER_FEATURES_20_DLL_H
13 #include "test_config.h"
14 #include "Compiler_Features_20_DLL_Export.h"
16 class COMPILER_FEATURES_20_DLL_Export UtcT
18 public:
19 ~UtcT () = default;
22 #endif /* ACE_TESTS_COMPILER_FEATURES_20_DLL_H */