Changeset 154 for smplayer/vendor/current/src/version.h
- Timestamp:
- Feb 21, 2014, 4:44:11 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/version.h
r140 r154 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.