| 41 | |
| 42 | template <typename MESSAGE_T> |
| 43 | inline bool GetMessage(MESSAGE_T& msg) { |
| 44 | if (arc_.Empty()) { |
| 45 | return false; |
| 46 | } |
| 47 | arc_ >> msg; |
| 48 | return true; |
| 49 | } |
| 50 | |
| 51 | template <typename GRAPH_T, typename MESSAGE_T> |
| 52 | inline bool GetMessage(const GRAPH_T& frag, typename GRAPH_T::vertex_t& v, |
nothing calls this directly
no test coverage detected