LCOV - code coverage report
Current view: top level - obj-x86_64-pc-linux-gnu/dist/include - nsIUTF8ConverterService.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 1 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIUTF8ConverterService.idl
       3             :  */
       4             : 
       5             : #ifndef __gen_nsIUTF8ConverterService_h__
       6             : #define __gen_nsIUTF8ConverterService_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:    nsIUTF8ConverterService */
      19             : #define NS_IUTF8CONVERTERSERVICE_IID_STR "249f52a3-2599-4b00-ba40-0481364831a2"
      20             : 
      21             : #define NS_IUTF8CONVERTERSERVICE_IID \
      22             :   {0x249f52a3, 0x2599, 0x4b00, \
      23             :     { 0xba, 0x40, 0x04, 0x81, 0x36, 0x48, 0x31, 0xa2 }}
      24             : 
      25           0 : class NS_NO_VTABLE nsIUTF8ConverterService : public nsISupports {
      26             :  public:
      27             : 
      28             :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IUTF8CONVERTERSERVICE_IID)
      29             : 
      30             :   /* [optional_argc] AUTF8String convertStringToUTF8 (in ACString aString, in string aCharset, in boolean aSkipCheck, [optional] in boolean aAllowSubstitution); */
      31             :   NS_IMETHOD ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval) = 0;
      32             : 
      33             :   /* AUTF8String convertURISpecToUTF8 (in ACString aSpec, in string aCharset); */
      34             :   NS_IMETHOD ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval) = 0;
      35             : 
      36             : };
      37             : 
      38             :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIUTF8ConverterService, NS_IUTF8CONVERTERSERVICE_IID)
      39             : 
      40             : /* Use this macro when declaring classes that implement this interface. */
      41             : #define NS_DECL_NSIUTF8CONVERTERSERVICE \
      42             :   NS_IMETHOD ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval) override; \
      43             :   NS_IMETHOD ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval) override; 
      44             : 
      45             : /* Use this macro when declaring the members of this interface when the
      46             :    class doesn't implement the interface. This is useful for forwarding. */
      47             : #define NS_DECL_NON_VIRTUAL_NSIUTF8CONVERTERSERVICE \
      48             :   nsresult ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval); \
      49             :   nsresult ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval); 
      50             : 
      51             : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      52             : #define NS_FORWARD_NSIUTF8CONVERTERSERVICE(_to) \
      53             :   NS_IMETHOD ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval) override { return _to ConvertStringToUTF8(aString, aCharset, aSkipCheck, aAllowSubstitution, _argc, _retval); } \
      54             :   NS_IMETHOD ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval) override { return _to ConvertURISpecToUTF8(aSpec, aCharset, _retval); } 
      55             : 
      56             : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      57             : #define NS_FORWARD_SAFE_NSIUTF8CONVERTERSERVICE(_to) \
      58             :   NS_IMETHOD ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ConvertStringToUTF8(aString, aCharset, aSkipCheck, aAllowSubstitution, _argc, _retval); } \
      59             :   NS_IMETHOD ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ConvertURISpecToUTF8(aSpec, aCharset, _retval); } 
      60             : 
      61             : #if 0
      62             : /* Use the code below as a template for the implementation class for this interface. */
      63             : 
      64             : /* Header file */
      65             : class nsUTF8ConverterService : public nsIUTF8ConverterService
      66             : {
      67             : public:
      68             :   NS_DECL_ISUPPORTS
      69             :   NS_DECL_NSIUTF8CONVERTERSERVICE
      70             : 
      71             :   nsUTF8ConverterService();
      72             : 
      73             : private:
      74             :   ~nsUTF8ConverterService();
      75             : 
      76             : protected:
      77             :   /* additional members */
      78             : };
      79             : 
      80             : /* Implementation file */
      81             : NS_IMPL_ISUPPORTS(nsUTF8ConverterService, nsIUTF8ConverterService)
      82             : 
      83             : nsUTF8ConverterService::nsUTF8ConverterService()
      84             : {
      85             :   /* member initializers and constructor code */
      86             : }
      87             : 
      88             : nsUTF8ConverterService::~nsUTF8ConverterService()
      89             : {
      90             :   /* destructor code */
      91             : }
      92             : 
      93             : /* [optional_argc] AUTF8String convertStringToUTF8 (in ACString aString, in string aCharset, in boolean aSkipCheck, [optional] in boolean aAllowSubstitution); */
      94             : NS_IMETHODIMP nsUTF8ConverterService::ConvertStringToUTF8(const nsACString & aString, const char * aCharset, bool aSkipCheck, bool aAllowSubstitution, uint8_t _argc, nsACString & _retval)
      95             : {
      96             :     return NS_ERROR_NOT_IMPLEMENTED;
      97             : }
      98             : 
      99             : /* AUTF8String convertURISpecToUTF8 (in ACString aSpec, in string aCharset); */
     100             : NS_IMETHODIMP nsUTF8ConverterService::ConvertURISpecToUTF8(const nsACString & aSpec, const char * aCharset, nsACString & _retval)
     101             : {
     102             :     return NS_ERROR_NOT_IMPLEMENTED;
     103             : }
     104             : 
     105             : /* End of implementation class template. */
     106             : #endif
     107             : 
     108             : 
     109             : #endif /* __gen_nsIUTF8ConverterService_h__ */

Generated by: LCOV version 1.13