more import fixes
This commit is contained in:
parent
2974d87560
commit
fb1d6b6a93
|
@ -2,12 +2,12 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_init.h"
|
||||
#import "js_realm.hpp"
|
||||
#import "js_object.hpp"
|
||||
#import "js_util.hpp"
|
||||
#import "js_schema.hpp"
|
||||
#import "platform.hpp"
|
||||
#include "js_init.h"
|
||||
#include "js_realm.hpp"
|
||||
#include "js_object.hpp"
|
||||
#include "js_util.hpp"
|
||||
#include "js_schema.hpp"
|
||||
#include "platform.hpp"
|
||||
|
||||
#include "shared_realm.hpp"
|
||||
#include <algorithm>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <JavaScriptCore/JSBase.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#import "shared_realm.hpp"
|
||||
#import "list.hpp"
|
||||
#pragma once
|
||||
|
||||
#include "js_util.hpp"
|
||||
#include "shared_realm.hpp"
|
||||
#include "list.hpp"
|
||||
|
||||
JSClassRef RJSListClass();
|
||||
JSObjectRef RJSListCreate(JSContextRef ctx, realm::List &list);
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#pragma once
|
||||
|
||||
#include "js_util.hpp"
|
||||
|
||||
namespace realm {
|
||||
class Object;
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#pragma once
|
||||
|
||||
#include "js_util.hpp"
|
||||
#include <map>
|
||||
|
||||
namespace realm {
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#pragma once
|
||||
|
||||
#include "js_util.hpp"
|
||||
|
||||
namespace realm {
|
||||
class Realm;
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#import <map>
|
||||
#pragma once
|
||||
|
||||
#include "js_util.hpp"
|
||||
#include <map>
|
||||
|
||||
namespace realm {
|
||||
class Schema;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
*/
|
||||
|
||||
#include "js_util.hpp"
|
||||
#include <JavaScriptCore/JSStringRef.h>
|
||||
|
||||
using namespace realm;
|
||||
|
||||
|
|
|
@ -2,7 +2,11 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <JavaScriptCore/JSContextRef.h>
|
||||
#include <JavaScriptCore/JSObjectRef.h>
|
||||
#include <JavaScriptCore/JSStringRef.h>
|
||||
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
|
|
Loading…
Reference in New Issue