| 105 | |
| 106 | |
| 107 | GVariant *Status::GetGVariantTuple() const |
| 108 | { |
| 109 | return g_variant_new("(uus)", |
| 110 | static_cast<guint32>(major), |
| 111 | static_cast<guint32>(minor), |
| 112 | message.c_str()); |
| 113 | } |
| 114 | |
| 115 | |
| 116 | GVariant *Status::GetGVariantDict() const |
nothing calls this directly
no outgoing calls
no test coverage detected