| 14 | Example_nnp(); |
| 15 | |
| 16 | Example_nnp(std::string tool, std::string name) : |
| 17 | pathBin("../../../bin"), |
| 18 | pathData("../../examples") |
| 19 | { |
| 20 | this->name = name; |
| 21 | this->tool = tool; |
| 22 | this->description = std::string("Test example \"") |
| 23 | + this->name |
| 24 | + "\" with tool \"" |
| 25 | + this->tool + "\""; |
| 26 | this->command = pathBin + "/" + this->tool; |
| 27 | this->pathData += "/" + this->tool + "/" + this->name; |
| 28 | } |
| 29 | }; |
| 30 | |
| 31 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected