| 109 | CNI_VALUE_CONST_V(val_v, double, 30) |
| 110 | |
| 111 | class foo { |
| 112 | public: |
| 113 | int val = 10; |
| 114 | |
| 115 | const char *test(const char *str) |
| 116 | { |
| 117 | std::cout << str; |
| 118 | return ",World"; |
| 119 | } |
| 120 | }; |
| 121 | |
| 122 | CNI_TYPE_EXT_V(foo_ext, foo, foo, foo()) { |
| 123 | CNI_CLASS_MEMBER(foo, val) |
nothing calls this directly
no outgoing calls
no test coverage detected