diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-20 17:29:33 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-20 17:29:33 +0000 |
commit | 4a78a70adc3cc4bb36c32d9f9d20c8f5515078a9 (patch) | |
tree | 3e6f16f1ef3900c0e63b6c65468346212aa29cee /ace/Timer_Heap_T.h | |
parent | 85748639bbf3180b09872febdb783cfa2f41d812 (diff) | |
download | ATCD-4a78a70adc3cc4bb36c32d9f9d20c8f5515078a9.tar.gz |
added Timer_{Heap,List}::get_first accessors
Diffstat (limited to 'ace/Timer_Heap_T.h')
-rw-r--r-- | ace/Timer_Heap_T.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ace/Timer_Heap_T.h b/ace/Timer_Heap_T.h index 080bc943bfe..6fac478a7c5 100644 --- a/ace/Timer_Heap_T.h +++ b/ace/Timer_Heap_T.h @@ -152,6 +152,9 @@ public: virtual void dump (void) const; // Dump the state of an object. + virtual ACE_Timer_Node_T<TYPE> *get_first (void); + // Reads the earliest node from the queue and returns it. + protected: virtual void reschedule (ACE_Timer_Node_T<TYPE> *); // Reschedule an "interval" <ACE_Timer_Node>. |