oxurl.inl

来自「《Windows多媒体编程基础》书第五章源代码SimpleBrowse一款简单易」· INL 代码 · 共 70 行

INL
70
字号
// ==========================================================================
// 					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 + =
减小字号Ctrl + -
显示快捷键?