Adding ::IID() methods to these interfaces...

git-svn-id: svn://10.0.0.236/trunk@21063 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com 1999-02-18 00:34:33 +00:00
parent 6f23628ee5
commit da7c584bf4
3 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,9 @@ class nsIStreamListener;
class nsIConnectionInfo : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_ICONNECTIONINFO_IID; return iid; }
/**
* Get the URL associated with this connection.
*

View File

@ -54,6 +54,7 @@ class nsIProtocol;
*/
struct nsINetService : public nsISupports
{
static const nsIID& IID() { static nsIID iid = NS_INETSERVICE_IID; return iid; }
/**
* Initiate an asynchronous URL load.<BR><BR>
*

View File

@ -40,6 +40,7 @@ struct URL_Struct_;
*/
class nsINetlibURL : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_INETLIBURL_IID; return iid; }
NS_IMETHOD GetURLInfo(URL_Struct_ **aResult) const = 0;
NS_IMETHOD SetURLInfo(URL_Struct_ *URL_s) = 0;