mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-22 05:28:34 -05:00
Local builds from source tar balls or the two phase wsjtx-superbuild no longer specify any revision, just the version number. Since these sort of builds are expected to be release candidates or release versions the revision (svn changeset number) is implicit from the svn tag of the version. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.4@4984 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
11 lines
232 B
C++
11 lines
232 B
C++
#ifndef REVISION_UTILS_HPP__
|
|
#define REVISION_UTILS_HPP__
|
|
|
|
#include <QString>
|
|
|
|
QString revision (QString const& svn_rev_string = QString {});
|
|
QString version ();
|
|
QString program_title (QString const& revision = QString {});
|
|
|
|
#endif
|