14 lines
293 B
C++
14 lines
293 B
C++
#ifndef COMMODITYTABLEMODEL_H
|
|
#define COMMODITYTABLEMODEL_H
|
|
#include <autotablemodel.h>
|
|
#include "data/commoditydata.h"
|
|
|
|
class CommodityTableModel : public AutoTableModel<CommodityData>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CommodityTableModel(QObject *parent= NULL);
|
|
};
|
|
|
|
#endif // COMMODITYTABLEMODEL_H
|