~ubuntu-branches/ubuntu/precise/kalgebra/precise-updates

« back to all changes in this revision

Viewing changes to analitza/vector.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-16 16:41:53 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20111216164153-ym1s7jhbqwn2ndz6
Tags: 4:4.7.90-0ubuntu2
PPA rebuild, no changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*************************************************************************************
2
 
 *  Copyright (C) 2009 by Aleix Pol <aleixpol@kde.org>                               *
3
 
 *                                                                                   *
4
 
 *  This program is free software; you can redistribute it and/or                    *
5
 
 *  modify it under the terms of the GNU General Public License                      *
6
 
 *  as published by the Free Software Foundation; either version 2                   *
7
 
 *  of the License, or (at your option) any later version.                           *
8
 
 *                                                                                   *
9
 
 *  This program is distributed in the hope that it will be useful,                  *
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                    *
12
 
 *  GNU General Public License for more details.                                     *
13
 
 *                                                                                   *
14
 
 *  You should have received a copy of the GNU General Public License                *
15
 
 *  along with this program; if not, write to the Free Software                      *
16
 
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA   *
17
 
 *************************************************************************************/
18
 
 
19
 
#ifndef VECTOR_H
20
 
#define VECTOR_H
21
 
 
22
 
#include "object.h"
23
 
#include "analitzaexport.h"
24
 
 
25
 
namespace Analitza
26
 
{
27
 
 
28
 
class ANALITZA_EXPORT Vector : public Object
29
 
{
30
 
        public:
31
 
                typedef QVector<Object*>::iterator iterator;
32
 
                typedef QVector<Object*>::const_iterator const_iterator;
33
 
                
34
 
                Vector(const Vector& v);
35
 
                Vector(int size);
36
 
                virtual ~Vector();
37
 
                
38
 
                void appendBranch(Object* );
39
 
                int size() const { return m_elements.size(); }
40
 
                
41
 
                iterator erase(const iterator& it) { return m_elements.erase(it); }
42
 
                
43
 
                iterator begin() { return m_elements.begin(); }
44
 
                iterator end() { return m_elements.end(); }
45
 
                const_iterator constBegin() const { return m_elements.constBegin(); }
46
 
                const_iterator constEnd() const { return m_elements.constEnd(); }
47
 
                
48
 
                Object* at(int i) const { return m_elements[i]; }
49
 
                void setAt(int i, Object* o) { m_elements[i]=o; }
50
 
                QList<Object*> values() const { return m_elements.toList(); }
51
 
                
52
 
                virtual QString visit (ExpressionWriter* e) const;
53
 
                virtual bool isZero() const;
54
 
                
55
 
                virtual bool matches(const Object* pattern, QMap< QString, const Object* >* found) const;
56
 
                virtual Object* copy() const;
57
 
                bool operator==(const Vector& v) const;
58
 
        private:
59
 
                QVector<Object*> m_elements;
60
 
};
61
 
 
62
 
}
63
 
 
64
 
#endif // VECTOR_H