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

« back to all changes in this revision

Viewing changes to include/unity/storage/provider/ProviderBase.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:
20
20
    root,
21
21
};
22
22
 
23
 
struct Item
 
23
struct __attribute__((visibility("default"))) Item
24
24
{
25
25
    std::string item_id;
26
26
    std::string parent_id;
31
31
    std::map<std::string,std::string> metadata;
32
32
};
33
33
 
34
 
class ProviderBase {
 
34
class __attribute__((visibility("default"))) ProviderBase
 
35
{
35
36
public:
36
37
    ProviderBase();
37
38
    virtual ~ProviderBase();