summaryrefslogtreecommitdiff
path: root/ace/Active_Map_Manager.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Active_Map_Manager.i')
-rw-r--r--ace/Active_Map_Manager.i63
1 files changed, 0 insertions, 63 deletions
diff --git a/ace/Active_Map_Manager.i b/ace/Active_Map_Manager.i
deleted file mode 100644
index 080b6fd74d1..00000000000
--- a/ace/Active_Map_Manager.i
+++ /dev/null
@@ -1,63 +0,0 @@
-// $Id$
-
-ACE_INLINE
-ACE_Active_Map_Manager_Key::ACE_Active_Map_Manager_Key (void)
- : index_ (~0),
- generation_ (0)
-{
- // If you change ~0, please change ACE_Map_Manager::free_list_id()
- // accordingly.
-}
-
-ACE_INLINE
-ACE_Active_Map_Manager_Key::ACE_Active_Map_Manager_Key (u_long index,
- u_long generation)
- : index_ (index),
- generation_ (generation)
-{
-}
-
-ACE_INLINE u_long
-ACE_Active_Map_Manager_Key::index (void) const
-{
- return this->index_;
-}
-
-ACE_INLINE u_long
-ACE_Active_Map_Manager_Key::generation (void) const
-{
- return this->generation_;
-}
-
-ACE_INLINE int
-ACE_Active_Map_Manager_Key::operator== (const ACE_Active_Map_Manager_Key &rhs) const
-{
- return
- this->index_ == rhs.index_ &&
- this->generation_ == rhs.generation_;
-}
-
-ACE_INLINE int
-ACE_Active_Map_Manager_Key::operator!= (const ACE_Active_Map_Manager_Key &rhs) const
-{
- return !this->operator== (rhs);
-}
-
-ACE_INLINE void
-ACE_Active_Map_Manager_Key::index (u_long i)
-{
- this->index_ = i;
-}
-
-ACE_INLINE void
-ACE_Active_Map_Manager_Key::generation (u_long g)
-{
- this->generation_ = g;
-}
-
-ACE_INLINE void
-ACE_Active_Map_Manager_Key::increment_generation_count (void)
-{
- ++this->generation_;
-}
-