| 18 | { |
| 19 | public: |
| 20 | CppInt32__(int inX=0) : mValue(inX) { } |
| 21 | CppInt32__(const null &inNull) : mValue(0) { } |
| 22 | CppInt32__(const Dynamic &inD); |
| 23 | operator int() const { return mValue; } |
nothing calls this directly
no outgoing calls
no test coverage detected