Adds an RSS feed URL for the target website

Return TypeFunction nameArguments
hzEcodehzWebhost::AddRSS(hzUrl&,)

Declared in file: hzHttpClient.h
Defined in file : hzHttpClient.cpp

Function Logic:

0:START 1:items 2:Return E_OK

Function body:

hzEcode hzWebhost::AddRSS (hzUrl& rss)
{
   //  Adds an RSS feed URL for the target website
   //  
   //  Arguments: 1) rss  The URL of the website's RSS feed
   //  
   //  Returns: E_ARGUMENT If the URL is not specified
   //     E_OK  If the root is added
   _hzfunc("hzWebhost::AddRSS") ;
   m_Feeds.Add(rss) ;
   return E_OK ;
}