| 77 | } |
| 78 | |
| 79 | std::map<Property*,GVariant*> Binding::get_property_value() |
| 80 | { |
| 81 | std::map <Property*,GVariant*> pvalue; |
| 82 | |
| 83 | for(auto p : _properties) |
| 84 | { |
| 85 | pvalue[p] = p->get_value(); |
| 86 | } |
| 87 | |
| 88 | return pvalue; |
| 89 | } |
| 90 | |
| 91 | QString Binding::print_gvariant(GVariant *const gvar) |
| 92 | { |