2013-07-17 13:38:11 +02:00
|
|
|
#ifndef VSTANDARTTABLECELL_H
|
|
|
|
#define VSTANDARTTABLECELL_H
|
|
|
|
|
2013-08-20 12:26:02 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
|
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
|
|
#pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
|
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 VStandartTableCell
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VStandartTableCell();
|
|
|
|
VStandartTableCell(qint32 base, qreal ksize, qreal kgrowth, QString description = QString());
|
|
|
|
qint32 GetBase() const;
|
|
|
|
qreal GetKsize() const;
|
|
|
|
qreal GetKgrowth() const;
|
|
|
|
QString GetDescription() const;
|
|
|
|
private:
|
|
|
|
qint32 base;
|
|
|
|
qreal ksize;
|
|
|
|
qreal kgrowth;
|
|
|
|
QString description;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VSTANDARTTABLECELL_H
|