cc_vvect.C 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 libraries 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. #include "dti_cc/cc_exceptions.h"
  25. #include "dti_cc/cc_vvect.h"
  26. template <class T>
  27. value_vector<T>::value_vector(const value_vector<T>& vv) :
  28. f_array(new T[vv.f_size]), f_size(vv.f_size)
  29. {
  30. for (int i=0; i<vv.f_size; i++ )
  31. f_array[i] = vv.f_array[i];
  32. cerr << "WARNING: value_vector(const value_vector&) called";
  33. exit(-1);
  34. }
  35. template <class T>
  36. value_vector<T>::value_vector(size_t n) :
  37. f_array(new T[n]), f_size(n)
  38. {
  39. }
  40. template <class T>
  41. value_vector<T>::value_vector(size_t n, const T& t) :
  42. f_array(new T[n]), f_size(n)
  43. {
  44. for (int i=0; i<f_size; i++ )
  45. f_array[i] = t;
  46. }
  47. template <class T>
  48. value_vector<T>::~value_vector()
  49. {
  50. delete f_array;
  51. }
  52. template <class T>
  53. void value_vector<T>::_grow(size_t t)
  54. {
  55. }
  56. template <class T>
  57. T value_vector<T>::operator[](size_t i) const
  58. {
  59. if ( (long)i < 0 || i >= f_size )
  60. throw(ccBoundaryException(0, f_size-1, i));
  61. else
  62. return f_array[i];
  63. }
  64. template <class T>
  65. T& value_vector<T>::operator[](size_t i)
  66. {
  67. if ( (long)i < 0 || i >= f_size )
  68. throw(ccBoundaryException(0, f_size-1, i));
  69. else
  70. return f_array[i];
  71. }