~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to vcs/vcsrevision.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 *
40
40
 * <table>
41
41
 * <tr><th>Revision type</th><th>QVariant type</th></tr>
42
 
 * <tr><td>GlobalNumber</td><td>qlonglong</td></tr>
43
 
 * <tr><td>FileNumber</td><td>qlonglong</td></tr>
 
42
 * <tr><td>GlobalNumber</td><td>qlonglong/QString</td></tr>
 
43
 * <tr><td>FileNumber</td><td>qlonglong/QString</td></tr>
44
44
 * <tr><td>Date</td><td>QDateTime</td></tr>
45
45
 * <tr><td>Special</td><td>KDevelop::VcsRevision::RevisionSpecialType or int, see explanation below</td></tr>
46
46
 * </table>
112
112
 
113
113
    /**
114
114
     * Return the value of this revision.
115
 
     * The actual content depends on the type of this revision, the possible
116
 
     * combinations are:
117
 
     *
118
 
     * FileNumber/GlobalNumber -> qlonglong
119
 
     * RevisionSpecialType     -> int that can be used to create a RevisionSpecialType
120
 
     * Date                    -> QDateTime
121
 
     *
 
115
     *
 
116
     * See the class documentation for the different QVariant types
122
117
     */
123
118
    QVariant revisionValue() const;
124
119