Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. template <typename jsType, typename jsParamType, typename ParamPrivateType = jsParamType::PrivateType, void(PrivateType::*Method)(const ParamPrivateType&)>
  2. static bool SetByRefMethod(JSContext *cx, unsigned argc, JS::Value *vp)
  3. {
  4. ...
  5. }
  6.  
  7. template <typename jsType, typename jsParamType, typename ParamPrivateType = jsParamType::PrivateType, void(PrivateType::*Method)( ParamPrivateType&)>
  8. static bool SetByRefMethod(JSContext *cx, unsigned argc, JS::Value *vp)
  9. {
  10. ...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement