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.
31 lines
590 B
C++
31 lines
590 B
C++
#pragma once
|
|
|
|
#include "iDlgBase.h"
|
|
#include "mSubWnd_global.h"
|
|
|
|
class ZxRstJobUtils;
|
|
class ZxMdiSubWindow;
|
|
|
|
class M_SUB_WND_EXPORT iResCpSrcDesc
|
|
{
|
|
public:
|
|
iResCpSrcDesc()
|
|
{
|
|
m_pSubChild = NULL;
|
|
m_oType = CST_Unknown;
|
|
}
|
|
|
|
// nMode = 0://已经加载 1://未保存 2:未加载
|
|
enum CpSrcType
|
|
{
|
|
CST_Loaded = 0, //成果已经保存,并且已经加载
|
|
CST_Unsaved, //待保存
|
|
CST_Unloaded, //保存的成果,但未加载
|
|
CST_Unknown
|
|
};
|
|
|
|
public:
|
|
ZxMdiSubWindow* m_pSubChild;
|
|
CpSrcType m_oType;
|
|
};
|