Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / dti_cc / cc_vvect.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 // $XConsortium: cc_vvect.C /main/4 1996/08/21 15:49:18 drk $
24
25 #include "dti_cc/cc_exceptions.h"
26
27 template <class T> 
28 value_vector<T>::value_vector(const value_vector<T>& vv) :
29    f_array(new T[vv.f_size]), f_size(vv.f_size)
30 {
31    for (int i=0; i<vv.f_size; i++ )
32      f_array[i] = vv.f_array[i];
33
34    cerr << "WARNING: value_vector(const value_vector&) called";
35    exit(-1);
36 }
37
38 template <class T> 
39 value_vector<T>::value_vector(size_t n) : 
40    f_array(new T[n]), f_size(n)
41 {
42 }
43
44 template <class T> 
45 value_vector<T>::value_vector(size_t n, const T& t) :
46    f_array(new T[n]), f_size(n)
47 {
48    for (int i=0; i<f_size; i++ )
49      f_array[i] = t;
50 }
51
52 template <class T> 
53 value_vector<T>::~value_vector()
54 {
55    delete f_array;
56 }
57
58 template <class T> 
59 void value_vector<T>::_grow(size_t t) 
60 {
61 }
62
63 template <class T> 
64 T value_vector<T>::operator[](size_t i) const
65 {
66   if ( (long)i < 0 || i >= f_size )
67     throw(ccBoundaryException(0, f_size-1, i));
68   else
69     return f_array[i];
70 }
71
72 template <class T> 
73 T& value_vector<T>::operator[](size_t i) 
74 {
75   if ( (long)i < 0 || i >= f_size )
76     throw(ccBoundaryException(0, f_size-1, i));
77   else
78     return f_array[i];
79 }
80