| 64 | class Pickleable { |
| 65 | public: |
| 66 | explicit Pickleable(const std::string &value) : m_value(value) {} |
| 67 | const std::string &value() const { return m_value; } |
| 68 | |
| 69 | void setExtra1(int extra1) { m_extra1 = extra1; } |
nothing calls this directly
no outgoing calls
no test coverage detected