|
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/21585/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/security/manager/pki/public/nsIASN1Tree.idl
*/
#ifndef __gen_nsIASN1Tree_h__
#define __gen_nsIASN1Tree_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsITreeView_h__
#include "nsITreeView.h"
#endif
#ifndef __gen_nsIX509Cert_h__
#include "nsIX509Cert.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: nsIASN1Tree */
#define NS_IASN1TREE_IID_STR "de142307-7b88-4e0a-b232-250f310e25d8"
#define NS_IASN1TREE_IID \
{0xde142307, 0x7b88, 0x4e0a, \
{ 0xb2, 0x32, 0x25, 0x0f, 0x31, 0x0e, 0x25, 0xd8 }}
class NS_NO_VTABLE nsIASN1Tree : public nsITreeView {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASN1TREE_IID)
/* void loadASN1Structure (in nsIASN1Object asn1Object); */
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) = 0;
/* AString getDisplayData (in unsigned long index); */
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIASN1Tree, NS_IASN1TREE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASN1TREE \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object); \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASN1TREE(_to) \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) { return _to LoadASN1Structure(asn1Object); } \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) { return _to GetDisplayData(index, _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_NSIASN1TREE(_to) \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) { return !_to ? NS_ERROR_NULL_POINTER : _to->LoadASN1Structure(asn1Object); } \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayData(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsASN1Tree : public nsIASN1Tree
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIASN1TREE
nsASN1Tree();
private:
~nsASN1Tree();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsASN1Tree, nsIASN1Tree)
nsASN1Tree::nsASN1Tree()
{
/* member initializers and constructor code */
}
nsASN1Tree::~nsASN1Tree()
{
/* destructor code */
}
/* void loadASN1Structure (in nsIASN1Object asn1Object); */
NS_IMETHODIMP nsASN1Tree::LoadASN1Structure(nsIASN1Object *asn1Object)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getDisplayData (in unsigned long index); */
NS_IMETHODIMP nsASN1Tree::GetDisplayData(uint32_t index, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define NS_ASN1TREE_CONTRACTID "@mozilla.org/security/nsASN1Tree;1"
#endif /* __gen_nsIASN1Tree_h__ */