1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim: set ts=8 sts=4 et sw=4 tw=99: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 /* Private forward declarations. */
8 
9 #ifndef xpcforwards_h___
10 #define xpcforwards_h___
11 
12 // forward declarations of interally used classes...
13 
14 class nsXPConnect;
15 class XPCJSContext;
16 class XPCJSRuntime;
17 class XPCContext;
18 class XPCCallContext;
19 
20 class XPCJSThrower;
21 
22 class nsXPCWrappedJS;
23 class nsXPCWrappedJSClass;
24 
25 class XPCNativeMember;
26 class XPCNativeInterface;
27 class XPCNativeSet;
28 
29 class XPCWrappedNative;
30 class XPCWrappedNativeProto;
31 class XPCWrappedNativeTearOff;
32 
33 class XPCTraceableVariant;
34 
35 class JSObject2WrappedJSMap;
36 class Native2WrappedNativeMap;
37 class IID2WrappedJSClassMap;
38 class IID2NativeInterfaceMap;
39 class ClassInfo2NativeSetMap;
40 class ClassInfo2WrappedNativeProtoMap;
41 class NativeSetMap;
42 class IID2ThisTranslatorMap;
43 class XPCWrappedNativeProtoMap;
44 class JSObject2JSObjectMap;
45 
46 class nsXPCComponents;
47 class nsXPCComponents_Interfaces;
48 class nsXPCComponents_InterfacesByID;
49 class nsXPCComponents_Classes;
50 class nsXPCComponents_ClassesByID;
51 class nsXPCComponents_Results;
52 class nsXPCComponents_ID;
53 class nsXPCComponents_Exception;
54 class nsXPCComponents_Constructor;
55 class nsXPCComponents_Utils;
56 class nsXPCConstructor;
57 
58 class AutoMarkingPtr;
59 
60 class xpcProperty;
61 
62 #endif /* xpcforwards_h___ */
63