23 lines
487 B
C
23 lines
487 B
C
|
|
#ifndef CINFLUXDBOPT_H
|
|||
|
|
#define CINFLUXDBOPT_H
|
|||
|
|
|
|||
|
|
#include <QObject>
|
|||
|
|
#include <dbms/db_his_query_api/DbHisQueryApi.h>
|
|||
|
|
#include <dbms/tsdb_api/TsdbApi.h>
|
|||
|
|
#include "common/DataType.h"
|
|||
|
|
class CInfluxdbOpt : public QObject
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
public:
|
|||
|
|
explicit CInfluxdbOpt(QObject *parent = nullptr);
|
|||
|
|
void initialize();
|
|||
|
|
signals:
|
|||
|
|
|
|||
|
|
public slots:
|
|||
|
|
void delInfluxdbOneEvent(uint64 nTime, int nType,QString strTag);
|
|||
|
|
private:
|
|||
|
|
//kbd_dbms::CTsdbConn m_objConn;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // CINFLUXDBOPT_H
|