// $Id$ // ============================================================================ // // = LIBRARY // examples // // = FILENAME // main_async.cpp // // = DESCRIPTION // Implements an asynchronous timer queue. // This code exercises the Timer_Queue_Test_Driver class using // signals as an asynchronous mechanism to dispatch events. // // = AUTHORS // Douglas Schmidt && // Sergio Flores-Gaitan // // ============================================================================ #include "ace/Auto_Ptr.h" #include "Driver.h" #include "Async_Timer_Queue_Test.h" ACE_RCSID(Timer_Queue, main_async, "$Id$") typedef Timer_Queue_Test_Driver ASYNC_TIMER_QUEUE_TEST_DRIVER; int main (int, char *[]) { ASYNC_TIMER_QUEUE_TEST_DRIVER *tqtd; ACE_NEW_RETURN (tqtd, Async_Timer_Queue_Test_Driver, -1); // Auto ptr ensures that the driver memory is released // automatically. auto_ptr driver (tqtd); return driver->run_test (); } #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) template class auto_ptr ; template class ACE_Auto_Basic_Ptr ; #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) #pragma instantiate auto_ptr #pragma instantiate ACE_Auto_Basic_Ptr #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */