| 70 | class MyObject1 : public Object { |
| 71 | public: |
| 72 | explicit MyObject1(int value) : value(value) { print_created(this, toString()); } |
| 73 | std::string toString() const override { return "MyObject1[" + std::to_string(value) + "]"; } |
| 74 | |
| 75 | protected: |
no test coverage detected