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

« back to all changes in this revision

Viewing changes to kst/kst/kstavector.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:
18
18
#define KSTAVECTOR_H
19
19
 
20
20
#include "kstvector.h"
 
21
#include "kst_export.h"
21
22
 
22
23
/**A vector  with n editable pts
23
24
 *@author cbn
24
25
 */
25
26
class KstAVector : public KstVector {
26
27
 public:
27
 
  KstAVector(const QDomElement &e);
28
 
  KstAVector(int n, const QString& tag);
 
28
  KST_EXPORT KstAVector(const QDomElement &e);
 
29
  KST_EXPORT KstAVector(int n, const QString& tag);
29
30
 
30
31
  virtual void save(QTextStream &ts, const QString& indent = QString::null, bool saveAbsolutePosition = false);
31
32