Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / dti_cc / cc_povec.h
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 /* $XConsortium: cc_povec.h /main/5 1996/08/21 15:49:07 drk $ */
24
25 #ifndef _cc_dlist_array_h
26 #define _cc_dlist_array_h
27
28 #include "dti_cc/CC_Dlist.h"
29 #include "dti_cc/cc_exceptions.h"
30
31 template <class T> 
32 class dlist_array : public CC_TPtrDlist<T>
33 {
34 protected:
35
36 public:
37    dlist_array(const dlist_array<T>&);
38    dlist_array(size_t);
39    virtual ~dlist_array();
40
41 //Get these members from CC_TPtrDlist
42 /*
43    size_t entries() const ;
44    void clearAndDestroy();
45    void prepend(T*);
46    void append(T*);
47    T* first() ;
48 */
49
50    T*  at(size_t pos) const  /* throw boundaryException
51                               * if list size is smaller than pos
52                               */
53    {
54      // Hack to get it passed to iter
55      CC_TPtrSlistIterator<T> iter( *(CC_TPtrSlist<T> *)this );
56      for ( size_t i = 0; i <=pos; i++ ) {
57        if ( !(++iter) ) {
58          throw(CASTCCBEXCEPT ccBoundaryException(0,0,i));
59        }
60      }
61
62      return( iter.key() );
63    }
64
65    T* operator()(size_t i) const { return at(i); };
66    T* operator[](size_t i) const { return at(i); };
67 };
68
69 #ifdef EXPAND_TEMPLATES
70 #include "cc_povec.C"
71 #endif
72
73 #endif
74
75