MCPcopy Create free account
hub / github.com/ComodoSecurity/openedr / X

Class X

edrav2/eprj/boost/libs/python/test/args.cpp:30–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28typedef test_class<> Y;
29
30struct X
31{
32 X(int a0 = 0, int a1 = 1) : inner0(a0), inner1(a1) {}
33 tuple f(int x = 1, double y = 4.25, char const* z = "wow")
34 {
35 return make_tuple(x, y, z);
36 }
37
38 Y const& inner(bool n) const { return n ? inner1 : inner0; }
39
40 Y inner0;
41 Y inner1;
42};
43
44BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(X_f_overloads, X::f, 0, 3)
45

Callers 2

make_xFunction · 0.70
exerciseFunction · 0.70

Calls

no outgoing calls

Tested by 2

make_xFunction · 0.56
exerciseFunction · 0.56