| 16 | ExamplePrediction(); |
| 17 | |
| 18 | ExamplePrediction(std::string name) : |
| 19 | pathData("../../examples/nnp-predict") |
| 20 | { |
| 21 | this->name = name; |
| 22 | this->description = std::string("Prediction example \"") |
| 23 | + this->name |
| 24 | + "\""; |
| 25 | this->pathData += "/" + this->name; |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | template<> |
nothing calls this directly
no outgoing calls
no test coverage detected