ACE+TAO-7_0_8
[ACE_TAO.git] / ACE / tests / Framework_Component_Test.h
blob92b5202d49f392afce693cb1761988972124c10e
2 //=============================================================================
3 /**
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
20 class Simple_Service
22 public:
23 Simple_Service (void)
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 */