#include <arma_version.hpp>
Static Public Member Functions | |
| static std::string | as_string () |
Static Public Attributes | |
| static const unsigned int | major = 0 |
| static const unsigned int | minor = 9 |
| static const unsigned int | patch = 52 |
Definition at line 22 of file arma_version.hpp.
| static std::string arma_version::as_string | ( | ) | [inline, static] |
Definition at line 31 of file arma_version.hpp.
References major, minor, and patch.
{
const char* nickname = "Monkey Wrench";
std::stringstream ss;
ss << arma_version::major
<< '.'
<< arma_version::minor
<< '.'
<< arma_version::patch
<< " ("
<< nickname
<< ')';
return ss.str();
}
const unsigned int arma_version::major = 0 [static] |
Definition at line 24 of file arma_version.hpp.
Referenced by junk::arma_first_extra_debug_message::arma_first_extra_debug_message(), and as_string().
const unsigned int arma_version::minor = 9 [static] |
Definition at line 25 of file arma_version.hpp.
Referenced by junk::arma_first_extra_debug_message::arma_first_extra_debug_message(), and as_string().
const unsigned int arma_version::patch = 52 [static] |
Definition at line 26 of file arma_version.hpp.
Referenced by junk::arma_first_extra_debug_message::arma_first_extra_debug_message(), and as_string().