| 6 | { |
| 7 | |
| 8 | class Serializable |
| 9 | { |
| 10 | public: |
| 11 | |
| 12 | virtual |
| 13 | ~Serializable() = default; |
| 14 | |
| 15 | virtual |
| 16 | QJsonObject |
| 17 | save() const = 0; |
| 18 | |
| 19 | virtual void |
| 20 | restore(QJsonObject const & /*p*/) {} |
| 21 | }; |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected