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.
nmWTAI-Platform/Include/nmNum/nmSubWxs/nmSubWxsAnalyzeContext.h

24 lines
586 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "nmSubWxs_global.h"
class nmSubWxsAnalyzeContextProvider;
// 功能界面层访问分析窗口的上下文入口
// nmSubWxs只保存抽象接口不直接依赖nmSubWnd中的具体窗口更新逻辑
//
class NM_SUB_WXS_EXPORT nmSubWxsAnalyzeContext
{
public:
// 注册分析窗口上下文提供者
//
static void setProvider(nmSubWxsAnalyzeContextProvider* pProvider);
// 获取分析窗口上下文提供者
//
static nmSubWxsAnalyzeContextProvider* provider();
private:
static nmSubWxsAnalyzeContextProvider* s_pProvider;
};