Choice model settings was added
This commit is contained in:
17
models/ordersmodel.h
Normal file
17
models/ordersmodel.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef ORDERSMODEL_H
|
||||
#define ORDERSMODEL_H
|
||||
|
||||
#include "basemodel.h"
|
||||
|
||||
class OrdersModel : public BaseModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit OrdersModel(QObject *parent = nullptr);
|
||||
|
||||
QVariantList orders() const;
|
||||
void submitOrder(const QVariantMap &order) const;
|
||||
};
|
||||
|
||||
#endif // ORDERSMODEL_H
|
||||
Reference in New Issue
Block a user