mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-17 09:06:26 +00:00
15 lines
469 B
C++
15 lines
469 B
C++
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
#import "RJSUtil.hpp"
|
|
|
|
namespace realm {
|
|
class Realm;
|
|
typedef std::shared_ptr<Realm> SharedRealm;
|
|
}
|
|
|
|
JSClassRef RJSResultsClass();
|
|
JSObjectRef RJSResultsCreate(JSContextRef ctx, realm::SharedRealm realm, std::string className);
|
|
JSObjectRef RJSResultsCreate(JSContextRef ctx, realm::SharedRealm realm, std::string className, std::string query, std::vector<JSValueRef> args);
|