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.
29 lines
522 B
29 lines
522 B
#ifndef TRENDMANAGER_H
|
|
#define TRENDMANAGER_H
|
|
#include "datamanagerbase.h"
|
|
#include "db/structs.h"
|
|
|
|
class XSqlExcute;
|
|
class TrendManager : public DataManagerBase
|
|
{
|
|
public:
|
|
TrendManager();
|
|
~TrendManager();
|
|
|
|
virtual void doExcute();
|
|
|
|
virtual void decodeToMysql();
|
|
|
|
virtual void getDataFromMysql();
|
|
|
|
private:
|
|
bool hasTrendData();
|
|
|
|
private:
|
|
QList<_trendStocks> trendStocksDatas;
|
|
QHash<QString,trends> trendsDatas;
|
|
QHash<QString,QString> blemind2StockCounts;
|
|
};
|
|
|
|
#endif // TRENDMANAGER_H
|