| 85 | } |
| 86 | |
| 87 | std::string LineFormat::toString() const |
| 88 | { |
| 89 | std::stringstream ss; |
| 90 | ss << m_style << ", " << |
| 91 | m_weight << ", " << |
| 92 | m_color.asHexString() << ", " << |
| 93 | m_visible; |
| 94 | return ss.str(); |
| 95 | } |
| 96 | |
| 97 | //static preference getters. |
| 98 | double LineFormat::getDefEdgeWidth() |
nothing calls this directly
no test coverage detected