#pragma once #include "stdafx.h" typedef list CListUrl; class CUrlMgr { public: CUrlMgr(void); ~CUrlMgr(void); private: CListUrl m_listUrl; public: bool AddUrl(string strUrl); bool RemoveAllUrl( ); string GetFirstUrl(); };