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

« back to all changes in this revision

Viewing changes to src/gl/Vector.h

  • 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
#ifndef _VECTOR_H
 
24
#define _VECTOR_H
 
25
 
 
26
#include "bool.h"
 
27
#include "llist.h"
 
28
 
 
29
template <class T> class Vector {
 
30
        public:
 
31
                Vector(unsigned c) {
 
32
                        cnt = c;
 
33
                        ar = new T[c];
 
34
                };
 
35
                Vector(const List<T> &copy);
 
36
                Vector(const Vector<T> &copy);
 
37
                ~Vector() {
 
38
                        delete [/* cnt */] ar;
 
39
                };
 
40
                const Vector<T> &operator=(const Vector<T> &copy);
 
41
                const Vector<T> &operator=(const List<T> &copy);
 
42
                T &operator [](int i) {
 
43
                        return ar[i];
 
44
                };
 
45
                const T &operator[](int i) const {
 
46
                        return ar[i];
 
47
                };
 
48
                unsigned count() const {
 
49
                        return cnt;
 
50
                };
 
51
                bool operator==(const Vector<T> &comp) const;
 
52
                bool operator< (const Vector<T> &comp) const;
 
53
                bool operator> (const Vector<T> &comp) const {
 
54
                        return comp < *this;
 
55
                };
 
56
                bool operator<=(const Vector<T> &comp) const {
 
57
                        return ! (comp < *this);
 
58
                };
 
59
                bool operator>=(const Vector<T> &comp) const {
 
60
                        return ! (*this < comp);
 
61
                };
 
62
                bool operator!=(const Vector<T> &comp) const {
 
63
                        return ! (*this == comp);
 
64
                };
 
65
        private:
 
66
                unsigned cnt;
 
67
                T *ar;
 
68
};
 
69
 
 
70
#endif