2 //=============================================================================
4 * @file Compiler_Features_20_DLL.h
6 * Test DLL export with default constructor
8 //=============================================================================
11 #ifndef ACE_TESTS_COMPILER_FEATURES_20_DLL_H
12 #define ACE_TESTS_COMPILER_FEATURES_20_DLL_H
14 #include "test_config.h"
16 #if defined (ACE_HAS_CPP11)
18 #include "Compiler_Features_20_DLL_Export.h"
20 class COMPILER_FEATURES_20_DLL_Export UtcT
23 ~UtcT (void) = default;
28 #endif /* ACE_TESTS_COMPILER_FEATURES_20_DLL_H */