OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Basic / InfoBase.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: InfoBase.cc /main/3 1996/06/11 16:19:21 cde-hal $
25  *
26  * Copyright (c) 1992 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_ObjectId
45 #define L_Odb
46
47 #define C_OutlineList
48 #define C_InfoBase
49 #define C_Book
50 #define C_Database
51 #define L_Basic
52
53 #define C_DatabaseMgr
54 #define L_Managers
55
56 #include "Prelude.h"
57
58 INIT_CLASS (InfoBase);
59
60 // /////////////////////////////////////////////////////////////////
61 // has_children
62 // /////////////////////////////////////////////////////////////////
63
64 bool
65 InfoBase::has_children_internal()
66 {
67   if (children_valid())
68     return (f_children != NULL);
69   else
70     return (f_infobase->num_of_docs() > 0);
71 }
72
73
74 // /////////////////////////////////////////////////////////////////
75 // create_children
76 // /////////////////////////////////////////////////////////////////
77
78 void
79 InfoBase::create_children()
80 {
81   int count = f_infobase->num_of_docs();
82   f_children = new OutlineList (count);
83
84   for (int i = 1; i <= count; i++)
85     {
86       doc_smart_ptr d (f_infobase, i);
87       node_smart_ptr n (f_infobase, d.locator_id());
88       f_children->append (new Book (ObjectId (f_infobase, n.locator())));
89     }
90 }
91
92
93 // /////////////////////////////////////////////////////////////////
94 // display
95 // /////////////////////////////////////////////////////////////////
96
97 void
98 InfoBase::display()
99 {
100 }