2 //=============================================================================
4 * @file Framework_Component_Test.h
6 * Define class needed for generating templates. IBM C++ requires this to
7 * be in its own file for auto template instantiation.
9 * @author Don Hinton <dhinton@ieee.org>
11 //=============================================================================
14 #ifndef ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H
15 #define ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H
17 #include "ace/Log_Msg.h"
19 /// This we will use to test the ACE_Framework_Repository
25 ACE_DEBUG ((LM_DEBUG
, ACE_TEXT ("Simple_Service::Simple_Service\n")));
27 virtual ~Simple_Service (void)
29 ACE_DEBUG ((LM_DEBUG
, ACE_TEXT ("Simple_Service::~Simple_Service\n")));
33 #endif /* ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H */