| 68 | |
| 69 | virtual std::string getName() const = 0; |
| 70 | std::string getShortName() const |
| 71 | { |
| 72 | StringList names = Utils::split2(getName(), '.'); |
| 73 | return names.size() == 2 ? names[1] : std::string(); |
| 74 | } |
| 75 | |
| 76 | enum class ParseStageResult |
| 77 | { |
no test coverage detected