Lines Matching refs:CppBindingExample
5 // This file contains the definition for CppBindingExample, which is used in
30 CppBindingExample::CppBindingExample() {
40 BindProperty("same", &CppBindingExample::same);
43 BindMethod("echoValue", &CppBindingExample::echoValue);
44 BindMethod("echoType", &CppBindingExample::echoType);
45 BindMethod("plus", &CppBindingExample::plus);
50 BindFallbackMethod(&CppBindingExample::fallbackMethod);
56 void CppBindingExample::echoValue(const CppArgumentList& args,
65 void CppBindingExample::echoType(const CppArgumentList& args,
85 void CppBindingExample::plus(const CppArgumentList& args,
116 void CppBindingExample::same(CppVariant* result) {
120 void CppBindingExample::fallbackMethod(const CppArgumentList& args,