get string representation
| 422 | |
| 423 | //! get string representation |
| 424 | std::string to_string() const { |
| 425 | return m_impl ? mgb::ssprintf( |
| 426 | "CompNode(\"%s\" from \"%s\")", |
| 427 | to_string_physical().c_str(), |
| 428 | to_string_logical().c_str()) |
| 429 | : "invalid"; |
| 430 | } |
| 431 | |
| 432 | //! get string representation of physical device |
| 433 | std::string to_string_physical() const { |
no outgoing calls
no test coverage detected