Doxygen changes
[ACE_TAO.git] / ACE / tests / Compiler_Features_20_DLL.h
blobdc6de763687fa622a117d57b334f492ffc33eb58
2 //=============================================================================
3 /**
4 * @file Compiler_Features_20_DLL.h
6 * Test DLL export with default constructor
7 */
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
22 public:
23 ~UtcT (void) = default;
26 #endif
28 #endif /* ACE_TESTS_COMPILER_FEATURES_20_DLL_H */