20 lines
483 B
C++
20 lines
483 B
C++
#ifndef CMAKEUSERPRESETS_JSON_FUNCTION_EXPORT_H
|
|
#define CMAKEUSERPRESETS_JSON_FUNCTION_EXPORT_H
|
|
#include "a1_采集预处理.h"
|
|
#include "a2_信号侦察.h"
|
|
#include "a3_信号处理.h"
|
|
#include "a4_信号生成.h"
|
|
#include "a5_信号对消.h"
|
|
#include "a6_存储列表.h"
|
|
#include "b0_升级记录.h"
|
|
class MainWindow;
|
|
class Data_source {
|
|
public:
|
|
void set_root(MainWindow* root);
|
|
Data_source();
|
|
protected:
|
|
MainWindow* m_root{};
|
|
};
|
|
extern Data_source data_source;
|
|
#endif
|