Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAccessibleApplication.idl
3 : */
4 :
5 : #ifndef __gen_nsIAccessibleApplication_h__
6 : #define __gen_nsIAccessibleApplication_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: nsIAccessibleApplication */
19 : #define NS_IACCESSIBLEAPPLICATION_IID_STR "79251626-387c-4531-89f3-680d31d6cf05"
20 :
21 : #define NS_IACCESSIBLEAPPLICATION_IID \
22 : {0x79251626, 0x387c, 0x4531, \
23 : { 0x89, 0xf3, 0x68, 0x0d, 0x31, 0xd6, 0xcf, 0x05 }}
24 :
25 0 : class NS_NO_VTABLE nsIAccessibleApplication : public nsISupports {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IACCESSIBLEAPPLICATION_IID)
29 :
30 : /* readonly attribute DOMString appName; */
31 : NS_IMETHOD GetAppName(nsAString & aAppName) = 0;
32 :
33 : /* readonly attribute DOMString appVersion; */
34 : NS_IMETHOD GetAppVersion(nsAString & aAppVersion) = 0;
35 :
36 : /* readonly attribute DOMString platformName; */
37 : NS_IMETHOD GetPlatformName(nsAString & aPlatformName) = 0;
38 :
39 : /* readonly attribute DOMString platformVersion; */
40 : NS_IMETHOD GetPlatformVersion(nsAString & aPlatformVersion) = 0;
41 :
42 : };
43 :
44 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIAccessibleApplication, NS_IACCESSIBLEAPPLICATION_IID)
45 :
46 : /* Use this macro when declaring classes that implement this interface. */
47 : #define NS_DECL_NSIACCESSIBLEAPPLICATION \
48 : NS_IMETHOD GetAppName(nsAString & aAppName) override; \
49 : NS_IMETHOD GetAppVersion(nsAString & aAppVersion) override; \
50 : NS_IMETHOD GetPlatformName(nsAString & aPlatformName) override; \
51 : NS_IMETHOD GetPlatformVersion(nsAString & aPlatformVersion) override;
52 :
53 : /* Use this macro when declaring the members of this interface when the
54 : class doesn't implement the interface. This is useful for forwarding. */
55 : #define NS_DECL_NON_VIRTUAL_NSIACCESSIBLEAPPLICATION \
56 : nsresult GetAppName(nsAString & aAppName); \
57 : nsresult GetAppVersion(nsAString & aAppVersion); \
58 : nsresult GetPlatformName(nsAString & aPlatformName); \
59 : nsresult GetPlatformVersion(nsAString & aPlatformVersion);
60 :
61 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
62 : #define NS_FORWARD_NSIACCESSIBLEAPPLICATION(_to) \
63 : NS_IMETHOD GetAppName(nsAString & aAppName) override { return _to GetAppName(aAppName); } \
64 : NS_IMETHOD GetAppVersion(nsAString & aAppVersion) override { return _to GetAppVersion(aAppVersion); } \
65 : NS_IMETHOD GetPlatformName(nsAString & aPlatformName) override { return _to GetPlatformName(aPlatformName); } \
66 : NS_IMETHOD GetPlatformVersion(nsAString & aPlatformVersion) override { return _to GetPlatformVersion(aPlatformVersion); }
67 :
68 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
69 : #define NS_FORWARD_SAFE_NSIACCESSIBLEAPPLICATION(_to) \
70 : NS_IMETHOD GetAppName(nsAString & aAppName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAppName(aAppName); } \
71 : NS_IMETHOD GetAppVersion(nsAString & aAppVersion) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAppVersion(aAppVersion); } \
72 : NS_IMETHOD GetPlatformName(nsAString & aPlatformName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPlatformName(aPlatformName); } \
73 : NS_IMETHOD GetPlatformVersion(nsAString & aPlatformVersion) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPlatformVersion(aPlatformVersion); }
74 :
75 : #if 0
76 : /* Use the code below as a template for the implementation class for this interface. */
77 :
78 : /* Header file */
79 : class nsAccessibleApplication : public nsIAccessibleApplication
80 : {
81 : public:
82 : NS_DECL_ISUPPORTS
83 : NS_DECL_NSIACCESSIBLEAPPLICATION
84 :
85 : nsAccessibleApplication();
86 :
87 : private:
88 : ~nsAccessibleApplication();
89 :
90 : protected:
91 : /* additional members */
92 : };
93 :
94 : /* Implementation file */
95 : NS_IMPL_ISUPPORTS(nsAccessibleApplication, nsIAccessibleApplication)
96 :
97 : nsAccessibleApplication::nsAccessibleApplication()
98 : {
99 : /* member initializers and constructor code */
100 : }
101 :
102 : nsAccessibleApplication::~nsAccessibleApplication()
103 : {
104 : /* destructor code */
105 : }
106 :
107 : /* readonly attribute DOMString appName; */
108 : NS_IMETHODIMP nsAccessibleApplication::GetAppName(nsAString & aAppName)
109 : {
110 : return NS_ERROR_NOT_IMPLEMENTED;
111 : }
112 :
113 : /* readonly attribute DOMString appVersion; */
114 : NS_IMETHODIMP nsAccessibleApplication::GetAppVersion(nsAString & aAppVersion)
115 : {
116 : return NS_ERROR_NOT_IMPLEMENTED;
117 : }
118 :
119 : /* readonly attribute DOMString platformName; */
120 : NS_IMETHODIMP nsAccessibleApplication::GetPlatformName(nsAString & aPlatformName)
121 : {
122 : return NS_ERROR_NOT_IMPLEMENTED;
123 : }
124 :
125 : /* readonly attribute DOMString platformVersion; */
126 : NS_IMETHODIMP nsAccessibleApplication::GetPlatformVersion(nsAString & aPlatformVersion)
127 : {
128 : return NS_ERROR_NOT_IMPLEMENTED;
129 : }
130 :
131 : /* End of implementation class template. */
132 : #endif
133 :
134 :
135 : #endif /* __gen_nsIAccessibleApplication_h__ */
|