~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/kst/kstamatrix.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-06-30 19:11:30 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630191130-acumuar75bz4puty
Tags: 1.2.1-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                 kstmatrix.h - a matrix with nX*nY editable points
 
3
                             -------------------
 
4
    begin                : July 2005
 
5
    copyright            : (C) 2005 by University of British Columbia
 
6
    email                :
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
#ifndef KSTAMATRIX_H
 
18
#define KSTAMATRIX_H
 
19
 
 
20
#include "kstmatrix.h"
 
21
#include "kst_export.h"
 
22
 
 
23
class KST_EXPORT KstAMatrix : public KstMatrix {
 
24
  public:
 
25
    KstAMatrix(const QDomElement &e);
 
26
    KstAMatrix(const QString &in_tag, uint nX, uint nY, double minX, double minY, double stepX, double stepY);
 
27
 
 
28
    virtual void save(QTextStream &ts, const QString& indent = QString::null);
 
29
};
 
30
 
 
31
typedef KstSharedPtr<KstAMatrix> KstAMatrixPtr;
 
32
typedef KstObjectList<KstAMatrixPtr> KstAMatrixList;
 
33
 
 
34
 
 
35
 
 
36
#endif
 
37
// vim: ts=2 sw=2 et