Use override/default for RTPortableServer
[ACE_TAO.git] / ACE / tests / Framework_Component_Test.h
blob2b8fd75d3e1a16f091a98d73a3585258e505af7d
2 //=============================================================================
3 /**
4 * @file Framework_Component_Test.h
6 * Define class needed for generating templates.
8 * @author Don Hinton <dhinton@ieee.org>
9 */
10 //=============================================================================
13 #ifndef ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H
14 #define ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H
16 #include "ace/Log_Msg.h"
18 /// This we will use to test the ACE_Framework_Repository
19 class Simple_Service
21 public:
22 Simple_Service ()
24 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Simple_Service::Simple_Service\n")));
26 virtual ~Simple_Service ()
28 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Simple_Service::~Simple_Service\n")));
32 #endif /* ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H */