|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21571/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/toolkit/components/places/nsIPlacesImportExportService.idl
*/
#ifndef __gen_nsIPlacesImportExportService_h__
#define __gen_nsIPlacesImportExportService_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIFile; /* forward declaration */
class nsIURI; /* forward declaration */
/* starting interface: nsIPlacesImportExportService */
#define NS_IPLACESIMPORTEXPORTSERVICE_IID_STR "47a4a09e-c708-4e68-b2f2-664d982ce026"
#define NS_IPLACESIMPORTEXPORTSERVICE_IID \
{0x47a4a09e, 0xc708, 0x4e68, \
{ 0xb2, 0xf2, 0x66, 0x4d, 0x98, 0x2c, 0xe0, 0x26 }}
class NS_NO_VTABLE nsIPlacesImportExportService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPLACESIMPORTEXPORTSERVICE_IID)
/* void exportHTMLToFile (in nsIFile aFile); */
NS_IMETHOD ExportHTMLToFile(nsIFile *aFile) = 0;
/* void backupBookmarksFile (); */
NS_IMETHOD BackupBookmarksFile(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPlacesImportExportService, NS_IPLACESIMPORTEXPORTSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPLACESIMPORTEXPORTSERVICE \
NS_IMETHOD ExportHTMLToFile(nsIFile *aFile); \
NS_IMETHOD BackupBookmarksFile(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPLACESIMPORTEXPORTSERVICE(_to) \
NS_IMETHOD ExportHTMLToFile(nsIFile *aFile) { return _to ExportHTMLToFile(aFile); } \
NS_IMETHOD BackupBookmarksFile(void) { return _to BackupBookmarksFile(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPLACESIMPORTEXPORTSERVICE(_to) \
NS_IMETHOD ExportHTMLToFile(nsIFile *aFile) { return !_to ? NS_ERROR_NULL_POINTER : _to->ExportHTMLToFile(aFile); } \
NS_IMETHOD BackupBookmarksFile(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->BackupBookmarksFile(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPlacesImportExportService : public nsIPlacesImportExportService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPLACESIMPORTEXPORTSERVICE
nsPlacesImportExportService();
private:
~nsPlacesImportExportService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsPlacesImportExportService, nsIPlacesImportExportService)
nsPlacesImportExportService::nsPlacesImportExportService()
{
/* member initializers and constructor code */
}
nsPlacesImportExportService::~nsPlacesImportExportService()
{
/* destructor code */
}
/* void exportHTMLToFile (in nsIFile aFile); */
NS_IMETHODIMP nsPlacesImportExportService::ExportHTMLToFile(nsIFile *aFile)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void backupBookmarksFile (); */
NS_IMETHODIMP nsPlacesImportExportService::BackupBookmarksFile()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPlacesImportExportService_h__ */