24 lines
335 B
C++
24 lines
335 B
C++
#pragma once
|
|
/*
|
|
数据采集类,继承实现 Futu 请求类接口
|
|
- 初始化连接
|
|
- 订阅/反订阅
|
|
- 数据请求
|
|
*/
|
|
#include <QObject>
|
|
#include "FTInterface.h"
|
|
#include "tool.h"
|
|
|
|
class QDataAcquisition : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QDataAcquisition(QObject *parent = nullptr);
|
|
|
|
~QDataAcquisition();
|
|
|
|
public:
|
|
CFTInterface* m_InterfaceFutu;
|
|
};
|