| 34 | |
| 35 | template<typename T> |
| 36 | QString idToString(T id) { |
| 37 | return QString("%1.%2.%3").arg(T::space_id).arg(T::type_id).arg(ObjectId(id.instance)); |
| 38 | } |
| 39 | QString idToString(graphene::db::object_id_type id) { |
| 40 | return QString("%1.%2.%3").arg(id.space(), id.type(), ObjectId(id.instance())); |
| 41 | } |
no test coverage detected