summaryrefslogtreecommitdiff
path: root/TAO/tao/Queued_Message.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-24 10:38:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-24 10:38:59 +0000
commit656cd314b3401b921f55c10a3c0841dfa37c2e23 (patch)
treee0e62c302670d1d315dfcbf13cf200567afc4b81 /TAO/tao/Queued_Message.h
parent17031551bd88510ae9812d102dc669151b4e7a5d (diff)
downloadATCD-656cd314b3401b921f55c10a3c0841dfa37c2e23.tar.gz
Tue Jul 24 10:38:23 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Queued_Message.h')
-rw-r--r--TAO/tao/Queued_Message.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tao/Queued_Message.h b/TAO/tao/Queued_Message.h
index 22f24e04f6f..051d71d6e2a 100644
--- a/TAO/tao/Queued_Message.h
+++ b/TAO/tao/Queued_Message.h
@@ -109,22 +109,22 @@ public:
*/
//@{
/// Set/get the next element in the list
- virtual TAO_Queued_Message *next (void) const;
+ TAO_Queued_Message *next (void) const;
/// Set/get the previous element in the list
- virtual TAO_Queued_Message *prev (void) const;
+ TAO_Queued_Message *prev (void) const;
/// Remove this element from the list
- virtual void remove_from_list (TAO_Queued_Message *&head,
- TAO_Queued_Message *&tail);
+ void remove_from_list (TAO_Queued_Message *&head,
+ TAO_Queued_Message *&tail);
/// Insert the current element at the tail of the queue.
- virtual void push_back (TAO_Queued_Message *&head,
- TAO_Queued_Message *&tail);
+ void push_back (TAO_Queued_Message *&head,
+ TAO_Queued_Message *&tail);
/// Insert the current element at the head of the queue.
- virtual void push_front (TAO_Queued_Message *&head,
- TAO_Queued_Message *&tail);
+ void push_front (TAO_Queued_Message *&head,
+ TAO_Queued_Message *&tail);
//@}
/** @name Template Methods
@@ -195,11 +195,11 @@ public:
* a pool), they need to be reclaimed explicitly.
*/
virtual void destroy (void) = 0;
-
+
/// Check for timeout
/**
* @param now Pass in the current time using
- * ACE_High_Res_Timer::gettimeofday_hr().
+ * ACE_High_Res_Timer::gettimeofday_hr().
* This is a parameter in order to avoid calling gettimeofday_hr() inside
* of this method (which will be called in a tight loop).
* @return true if the relative roundtrip timeout has expired.