realm-js/src/RJSResults.hpp
2015-11-19 13:05:37 -08:00

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);