move GetInstance from the header to the CPP since HPUX was throwing an

unresolved symbol.
This commit is contained in:
jdunn%netscape.com 1999-09-14 02:05:47 +00:00
Родитель 9eeb923bc3
Коммит eafcae3901
2 изменённых файлов: 11 добавлений и 6 удалений

Просмотреть файл

@ -394,6 +394,16 @@ nsresult nsHTTPHandler::RequestTransport(nsIURI* i_Uri,
return rv;
}
static nsHTTPHandler *
nsHTTPHandler::GetInstance(void)
{
static nsHTTPHandler* pHandler = new nsHTTPHandler();
NS_ADDREF(pHandler);
return pHandler;
};
nsresult nsHTTPHandler::ReleaseTransport(nsIChannel* i_pTrans)
{
nsresult rv;

Просмотреть файл

@ -112,12 +112,7 @@ public:
NS_IMETHOD FollowRedirects(PRBool bFollow=PR_TRUE);
// Singleton function
static nsHTTPHandler* GetInstance(void)
{
static nsHTTPHandler* pHandler = new nsHTTPHandler();
NS_ADDREF(pHandler);
return pHandler;
};
static nsHTTPHandler* GetInstance(void);
// Functions from nsIHTTPProtocolHandler
NS_DECL_NSIHTTPPROTOCOLHANDLER