Merge 'remotes/trunk'
[0ad.git] / libraries / source / spidermonkey / include-win32-debug / js / shadow / Realm.h
blobe3243d348387ad4c3fc7c3e12048016c45517bda
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
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/. */
7 /* Shadow definition of |JS::Realm| innards. Do not use this directly! */
9 #ifndef js_shadow_Realm_h
10 #define js_shadow_Realm_h
12 #include "jstypes.h" // JS_PUBLIC_API
14 namespace JS {
16 class JS_PUBLIC_API Compartment;
17 class JS_PUBLIC_API Realm;
19 namespace shadow {
21 class Realm {
22 protected:
23 JS::Compartment* compartment_;
25 explicit Realm(JS::Compartment* comp) : compartment_(comp) {}
27 public:
28 JS::Compartment* compartment() { return compartment_; }
29 static shadow::Realm* get(JS::Realm* realm) {
30 return reinterpret_cast<shadow::Realm*>(realm);
34 } // namespace shadow
36 } // namespace JS
38 #endif // js_shadow_Realm_h