📄 oxunc.inl
字号:
// ==========================================================================
// Inline functions : COXUNC
// ==========================================================================
// Header file : OXUNC.inl
// Source : R.Mortelmans
// Creation Date : 8th November 1996
// Last Modification : 8th November 1996
// //////////////////////////////////////////////////////////////////////////
inline void COXUNC::SetMainBuilt()
// --- In :
// --- Out :
// --- Returns :
// --- Effect : Mark that the main (full) UNC has been built
{
m_bMainBuilt = TRUE;
}
inline void COXUNC::SetPartsBuilt()
// --- In :
// --- Out :
// --- Returns :
// --- Effect : Mark that the UNC parts have been built
{
m_bPartsBuilt = TRUE;
}
inline void COXUNC::DestroyMain()
// --- In :
// --- Out :
// --- Returns :
// --- Effect : Mark that the main (full) UNC is not valid anymore
{
// ... We just flag that the main data has not been built yet
m_bMainBuilt = FALSE;
}
inline void COXUNC::DestroyParts()
// --- In :
// --- Out :
// --- Returns :
// --- Effect : Mark that the UNC parts are not valid anymore
{
// ... We just flag that the parts data has not been built yet
m_bPartsBuilt = FALSE;
}
inline BOOL COXUNC::IsMainBuilt() const
// --- In :
// --- Out :
// --- Returns : Whether the main (full) UNC has been built
// --- Effect :
{
return m_bMainBuilt;
}
inline BOOL COXUNC::ArePartsBuilt() const
// --- In :
// --- Out :
// --- Returns : Whether the UNC parts have been built
// --- Effect :
{
return m_bPartsBuilt;
}
// ==========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -