/gecko_api/include/nsIDOMHTMLHeadElement.h
C Header | 108 lines | 56 code | 26 blank | 26 comment | 0 complexity | 760f1a3ea2fed0c4edc1d1fd5edc14ce MD5 | raw file
1/* 2 * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/tinderbox/XR-Trunk/Darwin_8.8.4_Depend/mozilla/dom/public/idl/html/nsIDOMHTMLHeadElement.idl 3 */ 4 5#ifndef __gen_nsIDOMHTMLHeadElement_h__ 6#define __gen_nsIDOMHTMLHeadElement_h__ 7 8 9#ifndef __gen_nsIDOMHTMLElement_h__ 10#include "nsIDOMHTMLElement.h" 11#endif 12 13/* For IDL files that don't want to include root IDL files. */ 14#ifndef NS_NO_VTABLE 15#define NS_NO_VTABLE 16#endif 17 18/* starting interface: nsIDOMHTMLHeadElement */ 19#define NS_IDOMHTMLHEADELEMENT_IID_STR "a6cf9087-15b3-11d2-932e-00805f8add32" 20 21#define NS_IDOMHTMLHEADELEMENT_IID \ 22 {0xa6cf9087, 0x15b3, 0x11d2, \ 23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} 24 25/** 26 * The nsIDOMHTMLHeadElement interface is the interface to a [X]HTML 27 * head element. 28 * 29 * For more information on this interface please see 30 * http://www.w3.org/TR/DOM-Level-2-HTML/ 31 * 32 * @status FROZEN 33 */ 34class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLHeadElement : public nsIDOMHTMLElement { 35 public: 36 37 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLHEADELEMENT_IID) 38 39 /* attribute DOMString profile; */ 40 NS_SCRIPTABLE NS_IMETHOD GetProfile(nsAString & aProfile) = 0; 41 NS_SCRIPTABLE NS_IMETHOD SetProfile(const nsAString & aProfile) = 0; 42 43}; 44 45 NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLHeadElement, NS_IDOMHTMLHEADELEMENT_IID) 46 47/* Use this macro when declaring classes that implement this interface. */ 48#define NS_DECL_NSIDOMHTMLHEADELEMENT \ 49 NS_SCRIPTABLE NS_IMETHOD GetProfile(nsAString & aProfile); \ 50 NS_SCRIPTABLE NS_IMETHOD SetProfile(const nsAString & aProfile); 51 52/* Use this macro to declare functions that forward the behavior of this interface to another object. */ 53#define NS_FORWARD_NSIDOMHTMLHEADELEMENT(_to) \ 54 NS_SCRIPTABLE NS_IMETHOD GetProfile(nsAString & aProfile) { return _to GetProfile(aProfile); } \ 55 NS_SCRIPTABLE NS_IMETHOD SetProfile(const nsAString & aProfile) { return _to SetProfile(aProfile); } 56 57/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ 58#define NS_FORWARD_SAFE_NSIDOMHTMLHEADELEMENT(_to) \ 59 NS_SCRIPTABLE NS_IMETHOD GetProfile(nsAString & aProfile) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfile(aProfile); } \ 60 NS_SCRIPTABLE NS_IMETHOD SetProfile(const nsAString & aProfile) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetProfile(aProfile); } 61 62#if 0 63/* Use the code below as a template for the implementation class for this interface. */ 64 65/* Header file */ 66class nsDOMHTMLHeadElement : public nsIDOMHTMLHeadElement 67{ 68public: 69 NS_DECL_ISUPPORTS 70 NS_DECL_NSIDOMHTMLHEADELEMENT 71 72 nsDOMHTMLHeadElement(); 73 74private: 75 ~nsDOMHTMLHeadElement(); 76 77protected: 78 /* additional members */ 79}; 80 81/* Implementation file */ 82NS_IMPL_ISUPPORTS1(nsDOMHTMLHeadElement, nsIDOMHTMLHeadElement) 83 84nsDOMHTMLHeadElement::nsDOMHTMLHeadElement() 85{ 86 /* member initializers and constructor code */ 87} 88 89nsDOMHTMLHeadElement::~nsDOMHTMLHeadElement() 90{ 91 /* destructor code */ 92} 93 94/* attribute DOMString profile; */ 95NS_IMETHODIMP nsDOMHTMLHeadElement::GetProfile(nsAString & aProfile) 96{ 97 return NS_ERROR_NOT_IMPLEMENTED; 98} 99NS_IMETHODIMP nsDOMHTMLHeadElement::SetProfile(const nsAString & aProfile) 100{ 101 return NS_ERROR_NOT_IMPLEMENTED; 102} 103 104/* End of implementation class template. */ 105#endif 106 107 108#endif /* __gen_nsIDOMHTMLHeadElement_h__ */