| 279 | |
| 280 | |
| 281 | std::string EveSOFDataHullController::GetName() const |
| 282 | { |
| 283 | auto slash = m_path.rfind( '/' ); |
| 284 | if( slash == std::string::npos ) |
| 285 | { |
| 286 | return ""; |
| 287 | } |
| 288 | std::string result = m_path.substr( slash + 1 ); |
| 289 | auto dot = result.rfind( '.' ); |
| 290 | if( dot != std::string::npos ) |
| 291 | { |
| 292 | result = result.substr( 0, dot ); |
| 293 | } |
| 294 | return result; |
| 295 | } |
| 296 | |
| 297 | |
| 298 | EveSOFDataHull::EveSOFDataHull( IRoot* lockobj ) : |
no outgoing calls
no test coverage detected