Changeset 156 for smplayer/trunk/src/version.h
- Timestamp:
- Feb 21, 2014, 5:26:03 PM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 154
- Property svn:mergeinfo changed
-
smplayer/trunk/src/version.h
r142 r156 17 17 */ 18 18 19 #ifndef _VERSION_H_20 #define _VERSION_H_19 #ifndef VERSION_H 20 #define VERSION_H 21 21 22 22 #include <QString> 23 23 24 QString smplayerVersion(); 25 QString stableVersion(); 24 class Version { 25 public: 26 static QString printable(); 27 static QString stable(); 28 static QString revision(); 29 static QString with_revision() { return stable() + "." + revision(); } 30 }; 26 31 27 32 #endif
Note:
See TracChangeset
for help on using the changeset viewer.