/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsILocaleService.idl
 */

#ifndef __gen_nsILocaleService_h__
#define __gen_nsILocaleService_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

#ifndef __gen_nsILocale_h__
#include "nsILocale.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif

/* starting interface:    nsILocaleDefinition */
#define NS_ILOCALEDEFINITION_IID_STR "7c094410-4558-11d3-91cd-00105aa3f7dc"

#define NS_ILOCALEDEFINITION_IID \
  {0x7c094410, 0x4558, 0x11d3, \
    { 0x91, 0xcd, 0x00, 0x10, 0x5a, 0xa3, 0xf7, 0xdc }}

class NS_NO_VTABLE nsILocaleDefinition : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_ILOCALEDEFINITION_IID)

  /* void SetLocaleCategory (in wstring category, in wstring value); */
  NS_IMETHOD SetLocaleCategory(const PRUnichar *category, const PRUnichar *value) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSILOCALEDEFINITION \
  NS_IMETHOD SetLocaleCategory(const PRUnichar *category, const PRUnichar *value); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSILOCALEDEFINITION(_to) \
  NS_IMETHOD SetLocaleCategory(const PRUnichar *category, const PRUnichar *value) { return _to SetLocaleCategory(category, value); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSILOCALEDEFINITION(_to) \
  NS_IMETHOD SetLocaleCategory(const PRUnichar *category, const PRUnichar *value) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLocaleCategory(category, value); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsLocaleDefinition : public nsILocaleDefinition
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSILOCALEDEFINITION

  nsLocaleDefinition();
  virtual ~nsLocaleDefinition();
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsLocaleDefinition, nsILocaleDefinition)

nsLocaleDefinition::nsLocaleDefinition()
{
  NS_INIT_ISUPPORTS();
  /* member initializers and constructor code */
}

nsLocaleDefinition::~nsLocaleDefinition()
{
  /* destructor code */
}

/* void SetLocaleCategory (in wstring category, in wstring value); */
NS_IMETHODIMP nsLocaleDefinition::SetLocaleCategory(const PRUnichar *category, const PRUnichar *value)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


/* starting interface:    nsILocaleService */
#define NS_ILOCALESERVICE_IID_STR "48ab1fa0-4550-11d3-91cd-00105aa3f7dc"

#define NS_ILOCALESERVICE_IID \
  {0x48ab1fa0, 0x4550, 0x11d3, \
    { 0x91, 0xcd, 0x00, 0x10, 0x5a, 0xa3, 0xf7, 0xdc }}

class NS_NO_VTABLE nsILocaleService : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_ILOCALESERVICE_IID)

  /* nsILocale NewLocale (in wstring aLocale); */
  NS_IMETHOD NewLocale(const PRUnichar *aLocale, nsILocale **_retval) = 0;

  /* nsILocale NewLocaleObject (in nsILocaleDefinition localeDefinition); */
  NS_IMETHOD NewLocaleObject(nsILocaleDefinition *localeDefinition, nsILocale **_retval) = 0;

  /* nsILocale GetSystemLocale (); */
  NS_IMETHOD GetSystemLocale(nsILocale **_retval) = 0;

  /* nsILocale GetApplicationLocale (); */
  NS_IMETHOD GetApplicationLocale(nsILocale **_retval) = 0;

  /* nsILocale GetLocaleFromAcceptLanguage (in string acceptLanguage); */
  NS_IMETHOD GetLocaleFromAcceptLanguage(const char *acceptLanguage, nsILocale **_retval) = 0;

  /* wstring GetLocaleComponentForUserAgent (); */
  NS_IMETHOD GetLocaleComponentForUserAgent(PRUnichar **_retval) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSILOCALESERVICE \
  NS_IMETHOD NewLocale(const PRUnichar *aLocale, nsILocale **_retval); \
  NS_IMETHOD NewLocaleObject(nsILocaleDefinition *localeDefinition, nsILocale **_retval); \
  NS_IMETHOD GetSystemLocale(nsILocale **_retval); \
  NS_IMETHOD GetApplicationLocale(nsILocale **_retval); \
  NS_IMETHOD GetLocaleFromAcceptLanguage(const char *acceptLanguage, nsILocale **_retval); \
  NS_IMETHOD GetLocaleComponentForUserAgent(PRUnichar **_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSILOCALESERVICE(_to) \
  NS_IMETHOD NewLocale(const PRUnichar *aLocale, nsILocale **_retval) { return _to NewLocale(aLocale, _retval); } \
  NS_IMETHOD NewLocaleObject(nsILocaleDefinition *localeDefinition, nsILocale **_retval) { return _to NewLocaleObject(localeDefinition, _retval); } \
  NS_IMETHOD GetSystemLocale(nsILocale **_retval) { return _to GetSystemLocale(_retval); } \
  NS_IMETHOD GetApplicationLocale(nsILocale **_retval) { return _to GetApplicationLocale(_retval); } \
  NS_IMETHOD GetLocaleFromAcceptLanguage(const char *acceptLanguage, nsILocale **_retval) { return _to GetLocaleFromAcceptLanguage(acceptLanguage, _retval); } \
  NS_IMETHOD GetLocaleComponentForUserAgent(PRUnichar **_retval) { return _to GetLocaleComponentForUserAgent(_retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSILOCALESERVICE(_to) \
  NS_IMETHOD NewLocale(const PRUnichar *aLocale, nsILocale **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->NewLocale(aLocale, _retval); } \
  NS_IMETHOD NewLocaleObject(nsILocaleDefinition *localeDefinition, nsILocale **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->NewLocaleObject(localeDefinition, _retval); } \
  NS_IMETHOD GetSystemLocale(nsILocale **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSystemLocale(_retval); } \
  NS_IMETHOD GetApplicationLocale(nsILocale **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetApplicationLocale(_retval); } \
  NS_IMETHOD GetLocaleFromAcceptLanguage(const char *acceptLanguage, nsILocale **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLocaleFromAcceptLanguage(acceptLanguage, _retval); } \
  NS_IMETHOD GetLocaleComponentForUserAgent(PRUnichar **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLocaleComponentForUserAgent(_retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsLocaleService : public nsILocaleService
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSILOCALESERVICE

  nsLocaleService();
  virtual ~nsLocaleService();
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsLocaleService, nsILocaleService)

nsLocaleService::nsLocaleService()
{
  NS_INIT_ISUPPORTS();
  /* member initializers and constructor code */
}

nsLocaleService::~nsLocaleService()
{
  /* destructor code */
}

/* nsILocale NewLocale (in wstring aLocale); */
NS_IMETHODIMP nsLocaleService::NewLocale(const PRUnichar *aLocale, nsILocale **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsILocale NewLocaleObject (in nsILocaleDefinition localeDefinition); */
NS_IMETHODIMP nsLocaleService::NewLocaleObject(nsILocaleDefinition *localeDefinition, nsILocale **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsILocale GetSystemLocale (); */
NS_IMETHODIMP nsLocaleService::GetSystemLocale(nsILocale **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsILocale GetApplicationLocale (); */
NS_IMETHODIMP nsLocaleService::GetApplicationLocale(nsILocale **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsILocale GetLocaleFromAcceptLanguage (in string acceptLanguage); */
NS_IMETHODIMP nsLocaleService::GetLocaleFromAcceptLanguage(const char *acceptLanguage, nsILocale **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* wstring GetLocaleComponentForUserAgent (); */
NS_IMETHODIMP nsLocaleService::GetLocaleComponentForUserAgent(PRUnichar **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif

// {C8E518C1-47AE-11d3-91CD-00105AA3F7DC}
#define NS_LOCALESERVICE_CID {0xc8e518c1,0x47ae,0x11d3,{0x91,0xcd,0x0,0x10,0x5a,0xa3,0xf7,0xdc}}
#define NS_LOCALESERVICE_CONTRACTID "@mozilla.org/intl/nslocaleservice;1"
extern nsresult
NS_NewLocaleService(nsILocaleService** result);
extern nsresult
NS_NewLocaleDefinition(nsILocaleDefinition** result);

#endif /* __gen_nsILocaleService_h__ */
