home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / appcomps / nsIUserInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  3.8 KB  |  131 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIUserInfo.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIUserInfo_h__
  6. #define __gen_nsIUserInfo_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.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:    nsIUserInfo */
  19. #define NS_IUSERINFO_IID_STR "6c1034f0-1dd2-11b2-aa14-e6657ed7bb0b"
  20.  
  21. #define NS_IUSERINFO_IID \
  22.   {0x6c1034f0, 0x1dd2, 0x11b2, \
  23.     { 0xaa, 0x14, 0xe6, 0x65, 0x7e, 0xd7, 0xbb, 0x0b }}
  24.  
  25. class NS_NO_VTABLE nsIUserInfo : public nsISupports {
  26.  public: 
  27.  
  28.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IUSERINFO_IID)
  29.  
  30.   /* readonly attribute wstring fullname; */
  31.   NS_IMETHOD GetFullname(PRUnichar * *aFullname) = 0;
  32.  
  33.   /* readonly attribute string emailAddress; */
  34.   NS_IMETHOD GetEmailAddress(char * *aEmailAddress) = 0;
  35.  
  36.   /* readonly attribute string username; */
  37.   NS_IMETHOD GetUsername(char * *aUsername) = 0;
  38.  
  39.   /* readonly attribute string domain; */
  40.   NS_IMETHOD GetDomain(char * *aDomain) = 0;
  41.  
  42. };
  43.  
  44. /* Use this macro when declaring classes that implement this interface. */
  45. #define NS_DECL_NSIUSERINFO \
  46.   NS_IMETHOD GetFullname(PRUnichar * *aFullname); \
  47.   NS_IMETHOD GetEmailAddress(char * *aEmailAddress); \
  48.   NS_IMETHOD GetUsername(char * *aUsername); \
  49.   NS_IMETHOD GetDomain(char * *aDomain); 
  50.  
  51. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  52. #define NS_FORWARD_NSIUSERINFO(_to) \
  53.   NS_IMETHOD GetFullname(PRUnichar * *aFullname) { return _to GetFullname(aFullname); } \
  54.   NS_IMETHOD GetEmailAddress(char * *aEmailAddress) { return _to GetEmailAddress(aEmailAddress); } \
  55.   NS_IMETHOD GetUsername(char * *aUsername) { return _to GetUsername(aUsername); } \
  56.   NS_IMETHOD GetDomain(char * *aDomain) { return _to GetDomain(aDomain); } 
  57.  
  58. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  59. #define NS_FORWARD_SAFE_NSIUSERINFO(_to) \
  60.   NS_IMETHOD GetFullname(PRUnichar * *aFullname) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFullname(aFullname); } \
  61.   NS_IMETHOD GetEmailAddress(char * *aEmailAddress) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEmailAddress(aEmailAddress); } \
  62.   NS_IMETHOD GetUsername(char * *aUsername) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUsername(aUsername); } \
  63.   NS_IMETHOD GetDomain(char * *aDomain) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDomain(aDomain); } 
  64.  
  65. #if 0
  66. /* Use the code below as a template for the implementation class for this interface. */
  67.  
  68. /* Header file */
  69. class nsUserInfo : public nsIUserInfo
  70. {
  71. public:
  72.   NS_DECL_ISUPPORTS
  73.   NS_DECL_NSIUSERINFO
  74.  
  75.   nsUserInfo();
  76.  
  77. private:
  78.   ~nsUserInfo();
  79.  
  80. protected:
  81.   /* additional members */
  82. };
  83.  
  84. /* Implementation file */
  85. NS_IMPL_ISUPPORTS1(nsUserInfo, nsIUserInfo)
  86.  
  87. nsUserInfo::nsUserInfo()
  88. {
  89.   /* member initializers and constructor code */
  90. }
  91.  
  92. nsUserInfo::~nsUserInfo()
  93. {
  94.   /* destructor code */
  95. }
  96.  
  97. /* readonly attribute wstring fullname; */
  98. NS_IMETHODIMP nsUserInfo::GetFullname(PRUnichar * *aFullname)
  99. {
  100.     return NS_ERROR_NOT_IMPLEMENTED;
  101. }
  102.  
  103. /* readonly attribute string emailAddress; */
  104. NS_IMETHODIMP nsUserInfo::GetEmailAddress(char * *aEmailAddress)
  105. {
  106.     return NS_ERROR_NOT_IMPLEMENTED;
  107. }
  108.  
  109. /* readonly attribute string username; */
  110. NS_IMETHODIMP nsUserInfo::GetUsername(char * *aUsername)
  111. {
  112.     return NS_ERROR_NOT_IMPLEMENTED;
  113. }
  114.  
  115. /* readonly attribute string domain; */
  116. NS_IMETHODIMP nsUserInfo::GetDomain(char * *aDomain)
  117. {
  118.     return NS_ERROR_NOT_IMPLEMENTED;
  119. }
  120.  
  121. /* End of implementation class template. */
  122. #endif
  123.  
  124. // 14c13684-1dd2-11b2-9463-bb10ba742554
  125. #define NS_USERINFO_CID \
  126. {  0x14c13684, 0x1dd2, 0x11b2, \
  127.   {0x94, 0x63, 0xbb, 0x10, 0xba, 0x74, 0x25, 0x54}}
  128. #define NS_USERINFO_CONTRACTID "@mozilla.org/userinfo;1"
  129.  
  130. #endif /* __gen_nsIUserInfo_h__ */
  131.