fix imports
This commit is contained in:
parent
62ae41327d
commit
2974d87560
|
@ -2,7 +2,7 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import <JavaScriptCore/JSBase.h>
|
||||
#include <JavaScriptCore/JSBase.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "js_object.hpp"
|
||||
#include "js_util.hpp"
|
||||
#include "object_accessor.hpp"
|
||||
laksdlasd
|
||||
|
||||
using RJSAccessor = realm::NativeAccessor<JSValueRef, JSContextRef>;
|
||||
using namespace realm;
|
||||
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#import "js_object.hpp"
|
||||
#import "js_results.hpp"
|
||||
#import "js_schema.hpp"
|
||||
#import "js_list.hpp"
|
||||
#import "js_realm.hpp"
|
||||
#include "js_util.hpp"
|
||||
#include "js_object.hpp"
|
||||
#include "js_results.hpp"
|
||||
#include "js_schema.hpp"
|
||||
#include "js_list.hpp"
|
||||
#include "js_realm.hpp"
|
||||
|
||||
#import "object_store.hpp"
|
||||
#import "object_accessor.hpp"
|
||||
#include "object_store.hpp"
|
||||
#include "object_accessor.hpp"
|
||||
|
||||
using RJSAccessor = realm::NativeAccessor<JSValueRef, JSContextRef>;
|
||||
using namespace realm;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_realm.hpp"
|
||||
#import "js_object.hpp"
|
||||
#import "js_results.hpp"
|
||||
#import "js_list.hpp"
|
||||
#import "js_schema.hpp"
|
||||
#import "platform.hpp"
|
||||
#include "js_realm.hpp"
|
||||
#include "js_object.hpp"
|
||||
#include "js_results.hpp"
|
||||
#include "js_list.hpp"
|
||||
#include "js_schema.hpp"
|
||||
#include "platform.hpp"
|
||||
|
||||
#import "shared_realm.hpp"
|
||||
#import "object_accessor.hpp"
|
||||
#import "binding_context.hpp"
|
||||
#include "shared_realm.hpp"
|
||||
#include "object_accessor.hpp"
|
||||
#include "binding_context.hpp"
|
||||
|
||||
#import <set>
|
||||
#include <set>
|
||||
|
||||
using namespace realm;
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_results.hpp"
|
||||
#import "js_object.hpp"
|
||||
#import "object_accessor.hpp"
|
||||
#import "results.hpp"
|
||||
#import "parser.hpp"
|
||||
#import "query_builder.hpp"
|
||||
#include "js_results.hpp"
|
||||
#include "js_object.hpp"
|
||||
#include "object_accessor.hpp"
|
||||
#include "results.hpp"
|
||||
#include "parser.hpp"
|
||||
#include "query_builder.hpp"
|
||||
|
||||
using namespace realm;
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_schema.hpp"
|
||||
#import "object_store.hpp"
|
||||
#include "js_schema.hpp"
|
||||
#include "object_store.hpp"
|
||||
|
||||
namespace realm {
|
||||
struct SchemaWrapper {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "js_util.hpp"
|
||||
#include "js_util.hpp"
|
||||
|
||||
using namespace realm;
|
||||
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#include <JavaScriptCore/JSBase.h>
|
||||
#include <JavaScriptCore/JSObjectRef.h>
|
||||
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
#include "property.hpp"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Proprietary and Confidential
|
||||
*/
|
||||
|
||||
#import "rpc.hpp"
|
||||
#include "rpc.hpp"
|
||||
|
||||
#include <dlfcn.h>
|
||||
#include <map>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#import "json.hpp"
|
||||
#import <JavaScriptCore/JSBase.h>
|
||||
#include "json.hpp"
|
||||
#include <JavaScriptCore/JSBase.h>
|
||||
|
||||
namespace realm {
|
||||
class ObjectSchema;
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/binding_context.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/index_set.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/index_set.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/list.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/list.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/object_accessor.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/object_schema.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/object_schema.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/object_store.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/object_store.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/property.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/results.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/results.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/schema.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/schema.hpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/shared_realm.cpp
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../src/object-store/shared_realm.hpp
|
Loading…
Reference in New Issue