#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.
00032 { 00033 const char* nickname = "Monkey Wrench"; 00034 00035 std::stringstream ss; 00036 ss << arma_version::major 00037 << '.' 00038 << arma_version::minor 00039 << '.' 00040 << arma_version::patch 00041 << " (" 00042 << nickname 00043 << ')'; 00044 00045 return ss.str(); 00046 }
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().