~marcustomlinson/unity-scope-youtube/install_account_service

« back to all changes in this revision

Viewing changes to include/youtube/api/video.h

  • Committer: Marcus Tomlinson
  • Date: 2014-09-09 21:13:54 UTC
  • mfrom: (77.1.11 trunk)
  • Revision ID: marcus.tomlinson@canonical.com-20140909211354-6y3fd8bjxcdghtde
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    typedef std::shared_ptr<Video> Ptr;
37
37
 
38
38
    struct Statistics {
39
 
        std::string comment_count;
40
 
        std::string dislike_count;
41
 
        std::string favorite_count;
42
 
        std::string like_count;
43
 
        std::string view_count;
 
39
        unsigned int comment_count;
 
40
        unsigned int dislike_count;
 
41
        unsigned int favorite_count;
 
42
        unsigned int like_count;
 
43
        unsigned int view_count;
44
44
    };
45
45
 
46
46
    Video(const Json::Value &data);