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.
16 lines
392 B
C++
16 lines
392 B
C++
#include "nmPlotDialogContext.h"
|
|
|
|
nmPlotDialogContextProvider* nmPlotDialogContext::s_pProvider = nullptr;
|
|
|
|
// 注册界面弹窗上下文提供者
|
|
void nmPlotDialogContext::setProvider(nmPlotDialogContextProvider* pProvider)
|
|
{
|
|
s_pProvider = pProvider;
|
|
}
|
|
|
|
// 获取界面弹窗上下文提供者
|
|
nmPlotDialogContextProvider* nmPlotDialogContext::provider()
|
|
{
|
|
return s_pProvider;
|
|
}
|