Files
webtester/src/version.hxx

34 lines
1003 B
C++
Raw Normal View History

2015-05-05 08:30:58 +00:00
/*! @file
2015-05-05 15:06:08 +00:00
@id $Id$
2015-05-05 08:30:58 +00:00
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <string>
namespace NAMESPACE {
2015-05-05 15:06:08 +00:00
/// get package string which consists of package name and package version
2015-05-05 08:30:58 +00:00
std::string package_string();
2015-05-05 15:06:08 +00:00
/// get package name
2015-05-05 08:30:58 +00:00
std::string package_name();
2015-05-05 15:06:08 +00:00
/// get package version
2015-05-05 08:30:58 +00:00
std::string version();
2015-05-05 15:06:08 +00:00
/// get code build date
2015-05-05 08:30:58 +00:00
std::string build_date();
2015-05-05 15:06:08 +00:00
/// get author, i.e. copyright holder
2015-05-05 08:30:58 +00:00
std::string author();
2015-05-05 15:06:08 +00:00
/// get short package description (1st line of README)
2015-05-05 08:30:58 +00:00
std::string description();
2015-05-05 15:06:08 +00:00
/// get long package description (starting at 3rd line in README)
std::string readme();
/// get package logo file name
2015-05-05 08:30:58 +00:00
std::string logo();
2015-05-05 15:06:08 +00:00
/// get package icon file name
2015-05-05 08:30:58 +00:00
std::string icon();
2015-05-05 15:06:08 +00:00
/// used for <code>what filename</code>
2015-05-05 08:30:58 +00:00
extern const std::string WHAT;
2015-05-05 15:06:08 +00:00
/// used for <code>ident filename</code>
2015-05-05 08:30:58 +00:00
extern const std::string IDENT;
}