diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-14 06:30:06 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-14 06:30:06 +0000 |
commit | 6c2d206d92e1a65206097b8b1ceb5ee2b26c614e (patch) | |
tree | 33bd534b39f1e5bf30c4f56bf7f08e17dd5329ad /examples | |
parent | 150dd3b206f682eab457909da327025f08e46e3a (diff) | |
download | ATCD-6c2d206d92e1a65206097b8b1ceb5ee2b26c614e.tar.gz |
foo
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Reactor/Misc/test_timer_queue.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/Reactor/Misc/test_timer_queue.cpp b/examples/Reactor/Misc/test_timer_queue.cpp index c30525c1edb..ac2a026abf0 100644 --- a/examples/Reactor/Misc/test_timer_queue.cpp +++ b/examples/Reactor/Misc/test_timer_queue.cpp @@ -52,6 +52,15 @@ test_functionality (ACE_Timer_Queue *tq) ACE_ASSERT (tq->expire () == 0); } +struct Timer_Queues +{ + ACE_Timer_Queue *queue_; + // Pointer to the subclass of <ACE_Timer_Queue> that we're testing. + + const char *name_; + // Name of the Queue that we're testing. +}; + static Timer_Queues timer_queues[] = { { new ACE_Timer_List, "ACE_Timer_List" }, |