You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
358 B
22 lines
358 B
|
4 years ago
|
#ifndef NHIGHSTOCKS_H
|
||
|
|
#define NHIGHSTOCKS_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "structs.h"
|
||
|
|
|
||
|
|
class XHighStocks : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit XHighStocks(QObject *parent = nullptr);
|
||
|
|
~XHighStocks();
|
||
|
|
|
||
|
|
QString toInsertSql(_HighStocksParam stock);
|
||
|
|
QString toDeleteSql();
|
||
|
|
QString toQuerySql();
|
||
|
|
signals:
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // NHIGHSTOCKS_H
|