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

This commit is contained in:
mscott%netscape.com 1999-02-18 00:36:12 +00:00
Родитель eda401b85b
Коммит 6a7de11a8b
4 изменённых файлов: 5 добавлений и 0 удалений

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

@ -31,6 +31,8 @@
struct nsIHttpURL : public nsISupports
{
static const nsIID& IID() { static nsIID iid = NS_IHTTPURL_IID; return iid; }
/**
* Parse the mime header into the url struct.
* This method is intended to be used when an HTML META tag is encoutered

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

@ -57,6 +57,7 @@ typedef enum {
// Defining attributes of a url's load behavior.
class nsILoadAttribs : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_ILOAD_ATTRIBS_IID; return iid; }
// Copy the state of another nsILoadAttribs instance.
NS_IMETHOD Clone(nsILoadAttribs* aLoadAttribs) = 0;

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

@ -50,6 +50,7 @@ struct nsStreamBindingInfo {
*/
class nsIStreamListener : public nsIStreamObserver {
public:
static const nsIID& IID() { static nsIID iid = NS_ISTREAMLISTENER_IID; return iid; }
/**
* Return information regarding the current URL load.<BR>
* The info structure that is passed in is filled out and returned

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

@ -32,6 +32,7 @@
class nsITransport : public nsIStreamListener {
public:
static const nsIID& IID() { static nsIID iid = NS_ITRANSPORT_IID; return iid; }
/** Accessors */