Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Managers / NodeListMgr.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  * $XConsortium: NodeListMgr.cc /main/5 1996/06/11 16:27:01 cde-hal $
25  *
26  * Copyright (c) 1991 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc.
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  *
42  */
43
44 #define C_NodeListMgr
45 #define L_Managers
46
47 #define C_NodeListAgent
48 #define L_Agents
49
50 #include "Prelude.h"
51
52 // /////////////////////////////////////////////////////////////////
53 // class constructor
54 // /////////////////////////////////////////////////////////////////
55
56 NodeListMgr::NodeListMgr()
57 {
58 }
59
60
61 // /////////////////////////////////////////////////////////////////
62 // activate - make entry active
63 // /////////////////////////////////////////////////////////////////
64
65 void
66 NodeListMgr::activate (ListEntry *le)
67 {
68   f_active_agents.add (le, addHead);
69 }
70
71
72 // /////////////////////////////////////////////////////////////////
73 // deactivate - move entry from active to inactive list
74 // /////////////////////////////////////////////////////////////////
75
76 void
77 NodeListMgr::deactivate (ListEntry *le)
78 {
79   f_active_agents.set_cursor (le);
80   f_inactive_agents.add (f_active_agents.extract(), addHead);
81 }
82
83
84 // /////////////////////////////////////////////////////////////////
85 // next_inactive - return the next agent from the inactive list
86 // /////////////////////////////////////////////////////////////////
87
88 ListEntry *
89 NodeListMgr::next_inactive ()
90 {
91   f_inactive_agents.head ();
92   ListEntry *le = f_inactive_agents.extract ();
93
94   // Place it on the active list if we got one
95   if (le != NULL)
96     f_active_agents.add (le, addHead);
97
98   return (le);
99 }