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