~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to src/gl/lvector.c

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
////////////////////////////////////////////////////////////////////////////////
 
2
//
 
3
// This file is part of Toolkit for Conceptual Modeling (TCM).
 
4
// (c) copyright 2001, Universiteit Twente, Enschede.
 
5
// Author: David N. Jansen (dnjansen@cs.utwente.nl).
 
6
//
 
7
// TCM is free software; you can redistribute it and/or modify
 
8
// it under the terms of the GNU General Public License as published by
 
9
// the Free Software Foundation; either version 2 of the License, or
 
10
// (at your option) any later version.
 
11
//
 
12
// TCM is distributed in the hope that it will be useful,
 
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
// GNU General Public License for more details.
 
16
//
 
17
// You should have received a copy of the GNU General Public License
 
18
// along with TCM; if not, write to the Free Software
 
19
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
20
// 02111-1307, USA.
 
21
////////////////////////////////////////////////////////////////////////////////
 
22
 
 
23
#include "lvector.h"
 
24
#include "llist.h"
 
25
 
 
26
#ifdef __GNUC__
 
27
#include "subject.h"
 
28
 
 
29
template class Vector<Subject *>;
 
30
#endif
 
31
 
 
32
template<class T> Vector<T>::Vector(const List<T> &copy) {
 
33
        cnt = copy.count();
 
34
        ar = new T[cnt];
 
35
        for ( unsigned i = 0 ; i < cnt ; i++ )
 
36
                ar[i] = copy[i];
 
37
}
 
38
 
 
39
template<class T> Vector<T>::Vector(const Vector<T> &copy) {
 
40
        cnt = copy.count();
 
41
        ar = new T[cnt];
 
42
        for ( unsigned i = 0 ; i < cnt ; i++ )
 
43
                ar[i] = copy[i];
 
44
}
 
45
 
 
46
template<class T> const Vector<T> &Vector<T>::operator=(const Vector<T> &copy) {
 
47
        delete [/* cnt */] ar;
 
48
        cnt = copy.count();
 
49
        ar = new T[cnt];
 
50
        for ( unsigned i = 0 ; i < cnt ; i++ )
 
51
                ar[i] = copy[i];
 
52
        return *this;
 
53
}
 
54
 
 
55
template<class T> const Vector<T> &Vector<T>::operator=(const List<T> &copy) {
 
56
        delete [/* cnt */] ar;
 
57
        cnt = copy.count();
 
58
        ar = new T[cnt];
 
59
        for ( unsigned i = 0 ; i < cnt ; i++ )
 
60
                ar[i] = copy[i];
 
61
        return *this;
 
62
}
 
63
 
 
64
 
 
65
template<class T> bool Vector<T>::operator==(const Vector<T> &comp) const {
 
66
        for ( int i = count() ; --i >= 0 ; )
 
67
                if ( ar[i] != comp.ar[i] )
 
68
                        return False;
 
69
        return True;
 
70
}
 
71
 
 
72
 
 
73
template<class T> bool Vector<T>::operator< (const Vector<T> &comp) const {
 
74
        for ( int i = count() ; --i >= 0 ; )
 
75
                if ( ar[i] != comp.ar[i] )
 
76
                        return ar[i] < comp.ar[i];
 
77
        return False;
 
78
}