Create an empty Solution object
| 52 | |
| 53 | //! Create an empty Solution object |
| 54 | static shared_ptr<Solution> create() { |
| 55 | return shared_ptr<Solution>( new Solution ); |
| 56 | } |
| 57 | |
| 58 | //! Return the name of this Solution object |
| 59 | string name() const; |
no outgoing calls
no test coverage detected