~unity-api-team/storage-framework/vivid

« back to all changes in this revision

Viewing changes to include/unity/storage/provider/internal/dbusmarshal.h

  • Committer: James Henstridge
  • Date: 2016-05-10 09:38:09 UTC
  • mto: (8.1.4 storage-framework)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james@jamesh.id.au-20160510093809-uywupy44te62qe91
Add demo script, and fix up bugs preventing method calls from being handled.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
struct Item;
15
15
 
16
16
QDBusArgument& operator<<(QDBusArgument& argument, Item const& item);
17
 
 
18
 
namespace internal
19
 
{
20
 
 
21
 
QVariant marshal_item(Item const& item);
22
 
QVariant marshal_item_list(std::vector<Item> const& list);
23
 
 
24
 
}
 
17
QDBusArgument const& operator>>(QDBusArgument const& argument, Item& item);
 
18
 
 
19
QDBusArgument& operator<<(QDBusArgument& argument, std::vector<Item> const& items);
 
20
QDBusArgument const& operator>>(QDBusArgument const& argument, std::vector<Item>& items);
 
21
 
25
22
}
26
23
}
27
24
}