2013-07-17 13:38:11 +02:00
|
|
|
#ifndef VINCREMENTTABLEROW_H
|
|
|
|
#define VINCREMENTTABLEROW_H
|
|
|
|
|
2013-08-20 12:26:02 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
2013-07-17 13:38:11 +02:00
|
|
|
#include <QString>
|
2013-08-20 12:26:02 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
|
|
class VIncrementTableRow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VIncrementTableRow();
|
2013-08-13 18:48:36 +02:00
|
|
|
VIncrementTableRow(qint64 id, qreal base, qreal ksize, qreal kgrowth,
|
2013-07-17 13:38:11 +02:00
|
|
|
QString description = QString());
|
|
|
|
qint64 getId() const;
|
|
|
|
void setId(const qint64 &value);
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
qreal getBase() const;
|
|
|
|
void setBase(const qreal &value);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
|
|
qreal getKsize() const;
|
|
|
|
void setKsize(const qreal &value);
|
|
|
|
|
|
|
|
qreal getKgrowth() const;
|
|
|
|
void setKgrowth(const qreal &value);
|
|
|
|
|
|
|
|
QString getDescription() const;
|
|
|
|
void setDescription(const QString &value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
qint64 id;
|
2013-08-13 18:48:36 +02:00
|
|
|
qreal base;
|
2013-07-17 13:38:11 +02:00
|
|
|
qreal ksize;
|
|
|
|
qreal kgrowth;
|
|
|
|
QString description;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VINCREMENTTABLEROW_H
|