You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
435 B
C
19 lines
435 B
C
|
3 weeks ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "nmSubWxs_global.h"
|
||
|
|
|
||
|
|
class ZxMainWindow;
|
||
|
|
class iSubWndFitting;
|
||
|
|
|
||
|
|
// 功能界面层访问分析窗口能力的抽象接口
|
||
|
|
//
|
||
|
|
class NM_SUB_WXS_EXPORT nmSubWxsAnalyzeContextProvider
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual ~nmSubWxsAnalyzeContextProvider() {}
|
||
|
|
|
||
|
|
// 根据当前分析窗口刷新相关子窗口
|
||
|
|
//
|
||
|
|
virtual void updateWindowsForCurrentAnalyze(ZxMainWindow* pMainWindow, iSubWndFitting* pCurSubWndF) = 0;
|
||
|
|
};
|